.cookie-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #f8f8f8;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

.cookie-modal-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-modal h2 {
    font-size: 1.2rem;
    margin: 0 0 10px 0;
}

.cookie-modal p {
    margin: 0 20px 0 0;
    flex: 1;
}

.cookie-options {
    margin: 10px 20px 10px 0;
}

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

.cookie-buttons button {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#rejectCookies {
    background-color: #a1a1a1;
    color: white;
}

#acceptCookies {
    background-color: #4CAF50;
    color: white;
}

.cookie-buttons button:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .cookie-modal-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        margin-top: 10px;
        width: 100%;
        justify-content: flex-end;
    }
}
