.cookie-consent {
    display: flex;
    position: fixed;
    bottom: 10px;
    z-index: 1;
    left: 10px;
    right: 10px;
    background-color: #050505;
    color: white;
    padding: 9px;
    border-radius: 8px;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 50%;
    margin: auto;
}

.cookie-consent p {
    margin: 0;
    font-size: 14px;
}

.btn {
    background-color: transparent;
    border: white 1px solid;
    color: white;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 2px;
    transition: 0.1s ease-in;
}
#accept-btn:hover {
    background-color: #45a0496A;
}

#decline-btn:hover {
    background-color: #F2886D6A;
}

@media (max-width: 800px) {
    .cookie-consent {
        flex-direction: column;
        max-width: 90%;
        gap: 1rem;
        padding: 12px;
    }

    .cookie-consent p {
        font-size: 16px;
    }

    .btn {
        width: 100%;
        font-size: 16px;
    }
}

