 #info-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeInBg 0.3s ease;
}

.info-popup {
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    max-width: 350px;
    width: 80%;
    animation: scaleIn 0.25s ease;
}

.info-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.info-message {
    font-size: 16px;
    margin-bottom: 15px;
}

.info-close {
    background: #4a90e2;
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s ease;
}
.info-close:hover {
    background: #357ABD;
}

.hidden {
    display: none!important;
}

@keyframes fadeInBg {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}