/* Overlay background */
.deposit-license-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Show the popup */
.deposit-license-popup.show {
    opacity: 1;
    visibility: visible;
}

/* Popup content box */
.popup-content {
    display: flex;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
    flex-direction: column;
}
.label-field {
    text-align: left;
    font-size: 18px;
    font-weight: 500;
}
#popup-message {
    font-size: 16px;
    margin-top: 15px;
    font-weight: bold;
}


/* Close icon (X) */
.close-popup {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 22px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: #000;
}

/* Popup heading */
.popup-content h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 800;
}

/* iLok account link */
.popup-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.popup-content a {
    color: #e1b765;
    text-decoration: none;
    font-weight: bold;
}

.popup-content a:hover {
    text-decoration: underline;
}

/* Input fields */
.popup-content input {
    width: 100% !important;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    transition: border-color 0.3s ease;
}
button#continue-btn, button#deposit-btn, button#back-btn {
    margin: 5px auto;
    border-radius:50px;
}

.popup-content input:focus {
    border-color: #e1b765;
    outline: none;
}

/* Buttons */
.popup-content button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease, transform 0.2s ease;
}

#continue-btn {
    background: #e1b765;
    color: white;
    border-radius: 50px;
}

#continue-btn:hover {
    background: #806B42;
    transform: translateY(-2px);
}

#deposit-btn {
    background: #e1b765;
    color: white;
}

#deposit-btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

#deposit-btn:hover:not(:disabled) {
    background: #806B42;
    transform: translateY(-2px);
}

#back-btn {
    background: #000000;
    color: #fff;
}

#back-btn:hover {
    background: #000;
    transform: translateY(-2px);
}
p.create-ilok-account a {
    font-size: 14px;
}
.trial-products {
    padding-top: 20px;
    margin-top: 40px;
}
.trial-expired .download-file {
    opacity: 0.5;
}
.trial-expired .download-file .disabled {
    cursor: not-allowed;
    opacity: 0.5;
}
.trial-days-remaining {
    font-size: 0.9em;
    color: #666;
    font-weight: 500;
}
.trial-days-remaining.expiring-soon {
    color: #d00;
    font-weight: bold;
}
.error-message {
    color: #d00;
    font-size: 0.9em;
}
/* Fade-in animation */
@keyframes fadeIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .popup-content {
        width: 80%;
        padding: 20px;
    }

    .popup-content h2 {
        font-size: 16px;
    }

    .close-popup {
        top: 10px;
        right: 10px;
        font-size: 20px;
    }
}


