/**
 * External Link Notice CSS
 */

.externallinknotice-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.externallinknotice-modal-content {
    background-color: #ffffff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.externallinknotice-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
}

.externallinknotice-icon {
    background-color: rgba(243, 156, 18, 0.1);
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #f39c12;
}

.externallinknotice-icon svg {
    width: 24px;
    height: 24px;
}

.externallinknotice-modal h2 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 1.5em;
    font-weight: 600;
}

.externallinknotice-modal p {
    margin-bottom: 25px;
    color: #666;
    font-size: 0.95em;
    line-height: 1.5;
}

.externallinknotice-url {
    padding: 10px;
    background-color: #f7f9fc;
    border-radius: 4px;
    margin-bottom: 25px;
    color: #666;
    font-size: 0.9em;
}

.externallinknotice-modal-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.externallinknotice-stay {
    padding: 12px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, border-color 0.3s;
    width: 100%;
}

.externallinknotice-continue {
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
    width: 100%;
}

.externallinknotice-stay:hover {
    opacity: 0.9;
}

.externallinknotice-continue:hover {
    opacity: 0.9;
}