/* Custom styles for PosteRestante */

.sidebar {
    min-height: 100vh;
    background-color: #f8f9fa;
    border-right: 1px solid #dee2e6;
}

.sidebar .nav-link {
    color: #495057;
    border-radius: 0.375rem;
    margin-bottom: 0.25rem;
}

.sidebar .nav-link:hover {
    background-color: #e9ecef;
    color: #212529;
}

.sidebar .nav-link.active {
    background-color: #0d6efd;
    color: #fff;
}

.email-list .list-group-item {
    cursor: pointer;
    border-left: none;
    border-right: none;
}

.email-list .list-group-item:first-child {
    border-top: none;
}

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

.email-list .list-group-item:hover {
    background-color: #f8f9fa;
}

.attachment-icon {
    color: #6c757d;
}

.domain-status {
    font-size: 0.875rem;
}

.verification-code {
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

.email-content {
    max-height: 600px;
    overflow-y: auto;
}

.log-badge {
    font-size: 0.75rem;
}

.stats-card {
    transition: transform 0.2s;
}

.stats-card:hover {
    transform: translateY(-2px);
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 1rem;
}

.navbar-brand {
    font-weight: 600;
}

.table-responsive {
    border-radius: 0.375rem;
}

@media (max-width: 768px) {
    .sidebar {
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid #dee2e6;
    }
    
    .email-actions {
        margin-top: 0.5rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .verification-code {
        background: #343a40;
        border: 1px solid #495057;
        color: #fff;
    }
}