﻿.delete-color {
    color: var(--delete-color);
}

.card-icon {
    font-size: 20px;
    cursor: pointer;
}

.btn-link {
    text-decoration: none;
    cursor: pointer;
}


.text-input-bottom-line {
    display: flex;
    align-items: center;
    background-color: var(--accent-tertiary); /* helles Beige */
    border-radius: 0.5rem;
    padding: 0.4rem 0.8rem;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    transition: all 0.2s ease-in-out;
    border: 1px solid transparent;
}
    .text-input-bottom-line:focus-within {
        border-color: var(--accent-secondary); /* zartes Mintgrün */
        box-shadow: 0 0 0 2px rgba(118,192,162,0.25);
    }

    .text-input-bottom-line::placeholder {
        color: var(--text-secondary);
        opacity: 0.7;
    }

    .text-input-bottom-line:hover {
        background-color: rgb(245, 239, 224);
    }

.search-input {
    border: none;
    color: var(--text-primary);
    width: 100%;
    outline: none;
    font-size: 0.95rem;
}

.descriptive-label {
    color: var(--text-muted);
}
.search-bar::placeholder {
    color: #888;
}

.test-layout {
    background: #000000;
}