/* Modal Styling */
.privacy-statement {
    --privacy-adjustment: 0rem;
    padding: 2rem 1.5rem 1.5rem;
    position: fixed;
    bottom: 0;
    z-index: 5000;
    width: 40rem;
    max-width: 100%;
    left: 50%;
    transform: translate(-50%);
    text-align: left;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none; /* Initially hidden */
}

.privacy-statement.show {
    display: block; /* Display the modal */
    opacity: 1; /* Fade in */
}

/* Container Styling */
.privacy-statement .container-fluid-width {
    padding: 0;
    background-color: #d5d6dd;
    box-shadow: 0 6px 12px #00000024;
    padding: 1rem 1rem 1rem 1.5rem;
    border-radius: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Container Width */
.container-fluid-width {
    width: 100%;
    padding-left: var(--container-padding, 1rem);
    padding-right: var(--container-padding, 1rem);
    margin: auto;
}

/* Paragraph and button container */
.privacy-content {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Adjust gap as needed */
}

/* Text Styling for the Modal */
.privacy-statement .privacy-content p {
    font-family: 'Arial', sans-serif; /* Change to desired font-family */
    font-size: 1rem; /* Adjust font size as needed */
    font-weight: 400; /* Adjust font weight as needed */
    line-height: 1.5; /* Adjust line-height for better readability */
}

/* Button Styling */
.btnmodal {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
}

.btnmodal:hover {
    background-color: #0056b3;
}
