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

#lgpd-cookie-consent .modal-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#lgpd-cookie-consent .text {
    margin-bottom: 20px;
    text-align: center;
}

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

.btn-outline, .btn-primary {
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #007bff;
    color: #007bff;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
}