/**
 * External Link Warning Modal
 *
 * @package CountyCore
 */
.county-external-link-overlay {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.county-external-link-overlay.county-external-link-visible {
    opacity: 1;
    visibility: visible;
}

.county-external-link-modal {
    max-width: 480px;
    width: calc(100% - 2rem);
    margin: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.county-external-link-title {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.county-external-link-disclaimer {
    margin: 0 0 1rem;
    line-height: 1.5;
    color: #333;
}

.county-external-link-countdown {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: #666;
}

.county-external-link-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.county-external-link-stay,
.county-external-link-continue {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    border: 1px solid #ccc;
    background: #f5f5f5;
}

.county-external-link-stay:hover,
.county-external-link-continue:hover {
    background: #eee;
}

.county-external-link-continue {
    background: #2271b1;
    border-color: #2271b1;
    color: #fff;
}

.county-external-link-continue:hover {
    background: #135e96;
    border-color: #135e96;
}
