/* SkyNet Online PUDO Counter Selection Modal Styles */
.skypoint-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999999;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skypoint-modal-overlay.active {
    opacity: 1;
}

.skypoint-modal-content {
    background: #fff;
    width: 90%;
    max-width: 960px;
    height: 85vh;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.skypoint-modal-overlay.active .skypoint-modal-content {
    transform: scale(1);
}

.skypoint-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.skypoint-modal-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.skypoint-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #bbb;
    cursor: pointer;
    padding: 0;
    margin: 0;
    transition: color 0.2s;
}

.skypoint-modal-close:hover {
    color: #333;
}

.skypoint-modal-body {
    flex-grow: 1;
    position: relative;
    width: 100%;
    height: 100%;
}

.skypoint-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.skypoint-btn {
    display: inline-block;
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    margin-top: 10px;
    transition: background-color 0.2s;
}

.skypoint-btn:hover {
    background-color: #005177;
    color: #fff;
}
