.cdlc-container .cdlc-download-btn {
    background-color: #fed63e;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.cdlc-container .cdlc-download-btn:hover {
    background-color: #005b87;
}

.cdlc-container .cdlc-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
}

.cdlc-container .cdlc-popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    width: 90%;
    max-width: 500px;
    animation: fadeIn 0.3s ease-in;
    max-height: 90vh;
    overflow-y: auto;
}

.cdlc-container .cdlc-form-wrapper {
    text-align: center;
}

.cdlc-container .cdlc-close {
    position: absolute;
    top: -2px;
    right: 11px;
    font-size: 20px;
    cursor: pointer;
    color: #555;
}

.cdlc-container .cdlc-close:hover {
    color: #000;
}

.cdlc-container form p {
    margin: 15px 0;
}

.cdlc-container form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.cdlc-container form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 14px;
}

.cdlc-container form .cdlc-error {
    margin-top: 5px;
    font-size: 12px;
}

.cdlc-container form button {
    background-color: #28a745;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.cdlc-container form button:hover {
    background-color: #218838;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 480px) {
    .cdlc-container .cdlc-popup-content {
        padding: 15px;
        border-radius: 8px;
        max-height: 85vh;
    }

    .cdlc-container form input {
        font-size: 12px;
        padding: 8px;
    }

    .cdlc-container form button {
        font-size: 14px;
        padding: 8px;
    }
}