/**
 * Frontend Styles for AD Pro Download Manager
 */

.adpdm-download-wrapper {
    margin: 20px 0;
}

.adpdm-download-title {
    margin-bottom: 15px;
}

.adpdm-download-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0073aa;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.adpdm-download-button:hover {
    background-color: #005a87;
    color: #ffffff;
    text-decoration: none;
}

/* Dynamic hover styles will be applied via JavaScript */

.adpdm-download-form-container {
    max-width: 500px;
}

.adpdm-download-form p {
    margin-bottom: 15px;
}

.adpdm-download-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.adpdm-download-form input[type="text"],
.adpdm-download-form input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.adpdm-download-form input[type="text"]:focus,
.adpdm-download-form input[type="email"]:focus {
    outline: none;
    border-color: #0073aa;
}

.adpdm-download-form input[type="text"].adpdm-field-error,
.adpdm-download-form input[type="email"].adpdm-field-error {
    border-color: #dc3545;
    border-width: 2px;
    background-color: #fff5f5;
}

.adpdm-download-form .adpdm-download-button {
    margin-top: 10px;
}

.adpdm-download-form .adpdm-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
}

.adpdm-download-form .adpdm-message.success,
.adpdm-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 15px 20px;
    border-radius: 4px;
    margin: 15px 0 20px 0;
    font-weight: 500;
    display: block;
    clear: both;
}

.adpdm-download-form .adpdm-message.error,
.adpdm-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 15px 20px;
    border-radius: 4px;
    margin: 15px 0;
    font-weight: 500;
}

.adpdm-download-description {
    margin: 15px 0 20px 0;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.adpdm-download-description p {
    margin: 0 0 10px 0;
}

.adpdm-download-description p:last-child {
    margin-bottom: 0;
}

.adpdm-form-info {
    margin: 0 0 15px 0;
    padding: 10px 15px;
    background-color: #e7f3ff;
    color: #004085;
    border: 1px solid #b8daff;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.5;
}

.adpdm-form-info p {
    margin: 0;
}

.adpdm-form-info p:last-child {
    margin-bottom: 0;
}

