/* Cookie consent styles */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: bottom 0.5s ease;
    font-size: 14px;
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: block;
}

.cookie-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.cookie-content p {
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-settings {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: none;
}

.cookie-settings h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.cookie-types {
    margin-bottom: 20px;
}

.cookie-type {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-type:last-child {
    border-bottom: none;
}

.cookie-type label {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-weight: 600;
    cursor: pointer;
}

.cookie-type input {
    margin-right: 10px;
}

.cookie-type p {
    margin-top: 5px;
    font-size: 13px;
    color: #6c757d;
    margin-left: 25px;
}

.settings-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .cookie-content,
    .cookie-settings {
        padding: 15px;
    }
    
    .cookie-buttons,
    .settings-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button,
    .settings-buttons button {
        width: 100%;
        margin-bottom: 5px;
    }
}
