/* Cookie Banner Styles */
#lgpd-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 999999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    animation: slideIn 0.5s ease-out;
}

#lgpd-cookie-banner.lgpd-banner-bottom {
    bottom: 0;
}

#lgpd-cookie-banner.lgpd-banner-top {
    top: 0;
}

.lgpd-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.lgpd-banner-text {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.lgpd-banner-link {
    color: #4a9eff;
    text-decoration: underline;
    margin-left: 5px;
}

.lgpd-banner-button {
    background: #4a9eff;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.lgpd-banner-button:hover {
    background: #357abd;
}

@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .lgpd-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .lgpd-banner-button {
        width: 100%;
    }
}

/* DSR Form Styles */
.lgpd-dsr-form-container {
    max-width: 600px;
    margin: 30px auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.lgpd-form-group {
    margin-bottom: 20px;
}

.lgpd-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.lgpd-form-group input[type="text"],
.lgpd-form-group input[type="email"],
.lgpd-form-group input[type="tel"],
.lgpd-form-group select,
.lgpd-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.lgpd-form-group input:focus,
.lgpd-form-group select:focus,
.lgpd-form-group textarea:focus {
    outline: none;
    border-color: #4a9eff;
}

.lgpd-button {
    background: #4a9eff;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.lgpd-button:hover {
    background: #357abd;
}

.lgpd-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

#lgpd-dsr-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
}

#lgpd-dsr-message.success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

#lgpd-dsr-message.error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Consent Checkbox */
.lgpd-consent-checkbox {
    margin: 15px 0;
    padding: 15px;
    background: #f0f8ff;
    border-left: 4px solid #4a9eff;
    border-radius: 4px;
}

.lgpd-consent-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.lgpd-consent-checkbox input[type="checkbox"] {
    margin-top: 3px;
}

.lgpd-consent-checkbox .required {
    color: #dc3545;
    font-weight: bold;
}
