/* Navigation-Leiste */
.messages-navigation {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.messages-navigation a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    border-radius: 5px;
    background-color: #f8f9fa; /* heller Hintergrund */
    color: #141414;
    font-weight: 400;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
    border: 1px solid #dee2e6;
}

.messages-navigation a:hover {
    background-color: #e2f892;
    color: #1a1a1a;
    text-decoration: none;
}

.messages-navigation a.active {
   background-color: #a1c422;
    color: #fff;
    font-weight: 600;
    border-color: #0d6efd;
}

/* Card-Layout für Inbox / Sent / Dashboard */
.message-card {
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075);
    padding: 1rem;
    margin-bottom: 1rem;
}

/* Nicht gelesene Nachrichten hervorheben */
.message-card.unread {
    border-left: 4px solid #a1c422; /* Bootstrap Primary */
}

/* Buttons im Kartenbereich */
.message-card .btn {
    margin-right: 0.25rem;
}



/* Textabschnitte */
.message-card .card-title {
    font-weight: 600;
}

.message-card .card-subtitle {
    font-weight: 400;
    font-size: 0.875rem;
    color: #6c757d; /* Bootstrap muted */
}

.message-card .card-text {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Reply-Formulare */
.reply-form textarea {
    width: 100%;
    resize: vertical;
    margin-bottom: 0.5rem;
}

/* Löschen / Antworten Buttons */
.message-card form button {
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
}

