/* Cookie Consent Modal Styles */
.pudd-cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease-in-out;
}

.pudd-cookie-content {
    background: white;
    border-radius: 8px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.pudd-cookie-modal h3 {
    font-weight: bold;
    margin: 0 0 15px 0;
    font-size: 20px;
    color: #333;
}

.pudd-cookie-modal h4 {
    font-weight: bold;
    margin: 20px 0 15px 0;
    font-size: 18px;
    color: #333;
}

.pudd-cookie-modal h5 {
    font-weight: bold;
    margin: 15px 0 5px 0;
    font-size: 16px;
    color: #333;
}

.pudd-cookie-modal p {
    margin: 0 0 15px 0;
    line-height: 1.5;
    color: #666;
}

.pudd-cookie-section {
    margin: 20px 0;
}

.pudd-cookie-option {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 15px 0;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    background: #f9f9f9;
}

.pudd-cookie-option.essential {
    background: #f0f8ff;
    border-color: #b0d4f1;
}

.pudd-cookie-option .option-content {
    flex: 1;
    margin-right: 15px;
}

.pudd-cookie-option h5 {
    margin: 0 0 8px 0;
    font-weight: bold;
    font-size: 16px;
    color: #333;
}

.pudd-cookie-option p {
    margin: 0;
    line-height: 1.4;
    color: #666;
    font-size: 14px;
}

/* Custom Checkbox Styles */
.pudd-cookie-checkbox {
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
    min-width: 20px;
}

.pudd-cookie-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 2px solid #ddd;
    border-radius: 3px;
    transition: all 0.3s;
}

.pudd-cookie-checkbox:hover input ~ .checkmark {
    background-color: #f0f0f0;
}

.pudd-cookie-checkbox input:checked ~ .checkmark {
    background-color: #2196F3;
    border-color: #2196F3;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.pudd-cookie-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.pudd-cookie-checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.essential-required {
    background: #28a745;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pudd-cookie-accept-btn {
    background: #007cba;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 20px;
}

.pudd-cookie-accept-btn:hover {
    background: #005a87;
}

.pudd-cookie-accept-btn:active {
    transform: translateY(1px);
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Privacy Policy Links */
.pudd-privacy-links {
    margin: 10px 0 20px 0;
    font-size: 16px;
    line-height: 1.5;
}

.pudd-privacy-links a {
    color: #007cba;
    text-decoration: underline;
}

.pudd-privacy-links a:hover {
    color: #005a87;
}
@media (max-width: 768px) {
    .pudd-cookie-content {
        margin: 20px;
        padding: 20px;
        max-height: 90vh;
    }
    
    .pudd-cookie-option {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .pudd-cookie-option .option-content {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .pudd-cookie-checkbox {
        align-self: flex-start;
    }
}