body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}
.cookie-consent.hidden {
    transform: translateY(80%);
    cursor: pointer;
}
.cookie-consent p {
    margin: 0 0 10px;
    text-align: center;
}
.cookie-consent .buttons {
    display: flex;
    gap: 10px;
}
.cookie-consent button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.cookie-consent button.accept {
    background-color: #28a745;
    color: #fff;
}
.cookie-consent button.reject {
    background-color: #dc3545;
    color: #fff;
}
.cookie-consent button:hover {
    opacity: 0.9;
}
@media (max-width: 600px) {
    .cookie-consent {
        left: 10px;
        right: 10px;
    }
    .cookie-consent p {
        font-size: 14px;
    }
    .cookie-consent button {
        padding: 8px 16px;
    }
}
