.blur-bg {
    background-color: #1c1c3a;
    height: 100vh;
}

.navbar {
    margin-left: auto;
    /* Push the logo to the right */
}

.navbar-brand {
    position: relative;
    /* Allow adjustments within the navbar */
    margin: 0 auto;
    /* Center the logo initially */
}

.navbar-brand.move-right {
    margin-right: 0px;
    /* This will push the logo to the far right */
}

.container-fluid {
    display: flex;
    /* Enable flexbox */
    justify-content: space-between;
    /* Space between logo and any other elements */
}

.highlight {
    border: 1px solid red;
}


#chat-container {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 150px);
    /* Adjust this value based on the navbar's actual height */
    border: 1px solid #ccc;
    margin: 20px;
    padding: 10px;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 10px;
    /* Add rounded corners */
}

#message-container {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px;
    display: flex;
    flex-direction: column-reverse;
    /* To keep messages bottom-aligned */
}

#message-form {
    display: flex;
    margin-top: 10px;
}

#message-input {
    flex-grow: 1;
    margin-right: 10px;
}

.message-icon {
    width: 30px;
    /* Icon size */
    height: 30px;
    /* Icon size */
    border-radius: 50%;
    /* Makes it a circle */
    background-color: #666;
    /* Icon background color */
    color: white;
    /* Initials color */
    display: flex;
    justify-content: center;
    /* Center initials horizontally */
    align-items: center;
    /* Center initials vertically */
    margin-right: 10px;
    /* Space between icon and message */
    font-size: 14px;
    /* Adjust based on your preference */
    flex-shrink: 0;
    /* Prevent the icon from shrinking */
}

.message-with-icon {
    display: flex;
    align-items: center;
    /* Aligns the icon and message text vertically */
    margin-bottom: 10px;
    /* Space between messages */
}

.form-check-input:checked {
    background-color: #1c1c3a;
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* Adjust as needed */
    background-color: transparent;
}

.rounded-right {
    border-top-right-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important;
}

.highlight {
    border: 1px solid red;
}

#spinnerModal {
    z-index: 9999;
    /* Adjust this value as needed */
}

/* Add some basic styling */
.container {
    max-width: 400px;
    margin: 50px auto;
}

.StripeElement {
    box-sizing: border-box;
    height: 40px;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 4px;
    background-color: white;
    box-shadow: 0 1px 3px 0 #e6ebf1;
    -webkit-transition: box-shadow 150ms ease;
    transition: box-shadow 150ms ease;
}

.StripeElement--focus {
    box-shadow: 0 1px 3px 0 #cfd7df;
}

.StripeElement--invalid {
    border-color: #fa755a;
}

.StripeElement--webkit-autofill {
    background-color: #fefde5 !important;
}

#card-errors {
    color: #fa755a;
}

.payment-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

#card-element-container {
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
}

#card-element-container-cleaning {
    width: 100%;
    max-width: 500px;
    margin-bottom: 20px;
}

.buttons-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 500px;
}

button {
    height: 40px;
}

#powered-by-stripe {
    margin-top: 10px;
    text-align: center;
}

#priceParking {
    margin-top: 20px;
}

#audio-input-btn {
    border-width: 0.5px;
    /* Makes the border thinner */
}

#mic-button.active {
    background-color: #007bff;
    /* Blue background */
    color: white;
    /* White text or icon color */
    border-color: #0056b3;
    /* Darker blue border */
}


#audio-modal.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

#audio-modal .modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 70%;
    text-align: center;
}

#audio-modal .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

#audio-modal .close:hover,
#audio-modal .close:focus {
    color: black;
    text-decoration: none;
}

#audio-modal #p5-container {
    width: 100%;
    height: 300px;
    border: 1px solid #ddd;
    margin-top: 10px;
}