/* =========================================
   MAILBOX LIST (Posteingang) v12.4
   ========================================= */

/* Der einzelne Chat im Posteingang */
.mailbox-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mailbox-item:active,
.mailbox-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Ungelesene Nachrichten */
.mailbox-item--unread {
    background: linear-gradient(90deg, rgba(245, 166, 35, 0.1), rgba(255, 255, 255, 0.04)) !important;
    border-left: 3px solid var(--cheese-main, #F5A623) !important;
}

/* Texte */
.mailbox-item__time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    margin-left: auto;
}

.mailbox-item__preview {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
}

.mailbox-item--unread .mailbox-item__preview {
    color: white;
    font-weight: 600;
}

/* Roter Punkt */
.mailbox-item__badge {
    background: var(--cheese-main, #F5A623);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 22px;
    height: 22px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    margin-left: 8px;
}

/* Mülleimer */
.mailbox-action-btn {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; margin-left: 8px; z-index: 2;
}

/* Empty State */
.mailbox-empty {
    padding: 60px 24px; text-align: center; opacity: 0.7;
}
.mailbox-empty__icon { font-size: 3.5rem; margin-bottom: 16px; color: rgba(255,255,255,0.2); }