/* cards/email_card/style.css */

.email-item {
    padding: 15px 20px;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
}

.email-item:last-child {
    border-bottom: none;
}

.email-item:hover {
    background: #f8fafc;
}

.email-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0e7ff;
    color: #4f46e5;
    flex-shrink: 0;
}

.email-content {
    flex: 1;
    min-width: 0;
}

.email-from {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.email-subject {
    color: #64748b;
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.email-time {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

.unread-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3b82f6;
}
