/* ========================================
   ScoprEmail - Stile Completo
   ======================================== */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Blocco selezione testo */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

/* Permetti selezione solo negli input */
input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #64748b;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --background-color: #f8fafc;
    --card-background: #ffffff;
    --text-color: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-sm: 8px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ========================================
   Header
   ======================================== */
#header {
    background: var(--card-background);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-icon {
    font-size: 1.8rem;
}

#nav-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#user-email-display {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ========================================
   Bottoni
   ======================================== */
.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-primary:disabled {
    background: var(--secondary-color);
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.65rem 1.4rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-google:hover {
    border-color: var(--primary-color);
    background: #f8fafc;
}

.btn-google img {
    width: 20px;
    height: 20px;
}

.btn-danger {
    background: var(--danger-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-danger:hover {
    background: #dc2626;
}

.btn-small {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
}

.btn-admin-test {
    background: linear-gradient(135deg, #059669, #10b981);
    border: 2px dashed #34d399;
}

.btn-admin-test:hover {
    background: linear-gradient(135deg, #047857, #059669);
}

/* ========================================
   Sezioni
   ======================================== */
.section {
    flex: 1;
    padding: 2rem;
}

/* ========================================
   Auth Section
   ======================================== */
.auth-container {
    max-width: 420px;
    margin: 2rem auto;
    background: var(--card-background);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--text-light);
}

.auth-tabs {
    display: flex;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.auth-tab {
    flex: 1;
    padding: 0.75rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
}

.auth-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-color);
}

.form-group input {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0.5rem 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    color: var(--text-light);
    font-size: 0.85rem;
}

.auth-link {
    text-align: center;
    margin-top: 0.5rem;
}

.auth-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.auth-link a:hover {
    text-decoration: underline;
}

.auth-message {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    display: none;
}

.auth-message.success {
    display: block;
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.auth-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ========================================
   User Section
   ======================================== */
.user-container {
    max-width: 800px;
    margin: 0 auto;
}

.search-limit-info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    text-align: center;
}

.search-limit-info p {
    color: var(--primary-dark);
    font-size: 0.9rem;
}

.search-box {
    background: var(--card-background);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.search-box h2 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.search-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.search-input-group {
    display: flex;
    gap: 1rem;
}

.search-input-group input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
}

.search-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-note {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: #fef3c7;
    border: 1px solid #fcd34d;
    border-radius: var(--radius-sm);
    color: #92400e;
    font-size: 0.85rem;
}

/* ========================================
   Precheck Result
   ======================================== */
.precheck-result {
    background: var(--card-background);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.precheck-result h3 {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.precheck-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.precheck-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--background-color);
    border-radius: var(--radius-sm);
}

.precheck-label {
    color: var(--text-light);
}

.precheck-value {
    font-weight: 600;
}

.precheck-value.valid {
    color: var(--success-color);
}

.precheck-value.invalid {
    color: var(--danger-color);
}

.precheck-value.warning {
    color: var(--warning-color);
}

.precheck-cta {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.precheck-cta p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.disclaimer-prepay {
    font-size: 0.85rem;
    color: #856404;
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* ========================================
   Report Result
   ======================================== */
.report-result {
    background: var(--card-background);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.report-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 2rem;
    text-align: center;
}

.report-header h2 {
    margin-bottom: 0.5rem;
}

.report-email-display {
    font-size: 1.1rem;
    opacity: 0.9;
}

.report-date-display {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.report-section {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.report-section:last-of-type {
    border-bottom: none;
}

.report-section h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.identity-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background: var(--background-color);
    border-radius: var(--radius-sm);
}

.identity-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--border-color);
    flex-shrink: 0;
}

.identity-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.identity-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
}

.identity-source {
    color: var(--text-light);
    font-size: 0.85rem;
}

.classification-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.classification-badge.verified {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #28a745;
}

.classification-badge.probable {
    background-color: #cce5ff;
    color: #004085;
    border: 1px solid #007bff;
}

.classification-badge.uncertain {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffc107;
}

.classification-badge.not-verified {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #dc3545;
}

/* Badge per telefoni (principale/alternativo) */
.badge {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 0.5rem;
}

.badge-primary {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #28a745;
}

.badge-secondary {
    background-color: #e2e3e5;
    color: #383d41;
    border: 1px solid #6c757d;
}

.confidence-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.confidence-track {
    flex: 1;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.confidence-fill {
    height: 100%;
    background: var(--success-color);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.social-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--background-color);
    border-radius: var(--radius-sm);
}

.social-item a {
    color: var(--primary-color);
    text-decoration: none;
    word-break: break-all;
}

.social-item a:hover {
    text-decoration: underline;
}

.social-url-text {
    color: var(--text-light);
    font-size: 0.9rem;
    word-break: break-all;
    flex: 1;
}

.social-confidence {
    margin-left: auto;
    color: var(--text-light);
    font-size: 0.85rem;
}

.breach-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.breach-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #fee2e2;
    border-radius: var(--radius-sm);
    border: 1px solid #fca5a5;
}

.breach-item span:first-child {
    font-weight: 500;
    color: #991b1b;
}

.breach-item span:last-child {
    color: #dc2626;
    font-size: 0.9rem;
}

.no-breach {
    padding: 1rem;
    background: #dcfce7;
    border: 1px solid #86efac;
    border-radius: var(--radius-sm);
    color: #166534;
}

.other-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.other-info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--background-color);
    border-radius: var(--radius-sm);
}

.report-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--background-color);
}

.overall-confidence {
    font-size: 1.1rem;
}

.overall-confidence strong {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-left: 0.5rem;
}

/* ========================================
   Admin Section
   ======================================== */
.admin-container {
    max-width: 1000px;
    margin: 0 auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.admin-header h2 {
    font-size: 1.75rem;
}

.admin-box {
    background: var(--card-background);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.admin-box h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

.ai-switch {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.ai-switch strong {
    color: var(--primary-color);
}

.admin-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--background-color);
    border-radius: var(--radius-sm);
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.85rem;
}

.users-table-container,
.log-table-container {
    overflow-x: auto;
}

.users-table,
.log-table {
    width: 100%;
    border-collapse: collapse;
}

.users-table th,
.users-table td,
.log-table th,
.log-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.users-table th,
.log-table th {
    background: var(--background-color);
    font-weight: 600;
    color: var(--text-color);
}

.users-table td,
.log-table td {
    font-size: 0.9rem;
}

.status-active {
    color: var(--success-color);
    font-weight: 500;
}

.status-blocked {
    color: var(--danger-color);
    font-weight: 500;
}

/* ========================================
   Footer
   ======================================== */
#footer {
    background: var(--card-background);
    border-top: 1px solid var(--border-color);
    padding: 1.5rem 2rem;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-container p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 0.5rem;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* ========================================
   Loading Overlay
   ======================================== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 1000;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#loading-text {
    color: var(--text-color);
    font-weight: 500;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
    #header {
        padding: 1rem;
    }
    
    .section {
        padding: 1rem;
    }
    
    .auth-container {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .search-input-group {
        flex-direction: column;
    }
    
    .search-box {
        padding: 1.5rem;
    }
    
    .identity-box {
        flex-direction: column;
        text-align: center;
    }
    
    .report-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .admin-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ai-switch {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========================================
   Utility Classes
   ======================================== */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.text-success {
    color: var(--success-color);
}

.text-danger {
    color: var(--danger-color);
}

.text-warning {
    color: var(--warning-color);
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }


/* Report Summary */
.report-summary {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 1rem 0;
}

.report-summary h3 {
    margin-bottom: 0.75rem;
    color: #0369a1;
}

.summary-text {
    line-height: 1.7;
    color: #334155;
    font-size: 0.95rem;
}

.breach-alert {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 2px solid #dc2626;
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    color: #991b1b;
    font-weight: 500;
    line-height: 1.6;
    font-size: 0.95rem;
}

.security-ok {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #22c55e;
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    color: #166534;
    font-weight: 500;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contacts Section */
.contacts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contacts-group {
    background: var(--background-color);
    border-radius: var(--radius-sm);
    padding: 1rem;
}

.contacts-group h4 {
    margin: 0 0 0.75rem 0;
    font-size: 0.95rem;
    color: var(--text-color);
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item span:first-child {
    color: var(--text-color);
    word-break: break-all;
}

.contact-confidence {
    color: var(--text-light);
    font-size: 0.85rem;
    white-space: nowrap;
    margin-left: 1rem;
}

/* Report Disclaimer */
.report-disclaimer {
    margin-top: 1.5rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.report-disclaimer p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
}

.report-disclaimer a {
    color: var(--primary-color);
}

/* Admin Box Header */
.admin-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.admin-box-header h3 {
    margin: 0;
}

/* Action buttons in table */
.action-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Button variants */
.btn-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border: none;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
}

.btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669, #047857);
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: none;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.btn-small {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

/* Status badges */
.status-active {
    color: #059669;
    font-weight: 500;
}

.status-blocked {
    color: #dc2626;
    font-weight: 500;
}

/* ========================================
   Retry Error Box
   ======================================== */

.retry-error-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.retry-error-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.retry-error-content h3 {
    color: #f59e0b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.retry-error-content p {
    color: #64748b;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.retry-error-content button {
    margin: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
}

#btn-retry-report {
    background: #2563eb;
    color: white;
}

#btn-retry-report:hover {
    background: #1d4ed8;
}

#btn-cancel-retry {
    background: #e2e8f0;
    color: #64748b;
}

#btn-cancel-retry:hover {
    background: #cbd5e1;
}