body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
}

h1 {
    text-align: center;
}

h2 {
    text-align: center;
    margin-top: 10px;
    font-weight: normal;
    color: #333;
    font-size: 18px;
}

a#learn-more-link {
    display: block;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
    color: #007BFF;
    text-decoration: none;
    cursor: pointer;
}

a#learn-more-link:hover {
    text-decoration: underline;
}

#learn-more-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

#app {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

input, select, button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 16px;
}

button {
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #0056b3;
}

/* Ensure the price entry box matches the width of other elements */
#price, #join-price, #join-session-id {
    width: 100%;
    box-sizing: border-box;
}

/* Styling for the copy link */
.copy-link {
    color: #007BFF; /* Blue color */
    text-decoration: none; /* No underline */
    text-transform: lowercase;
    cursor: pointer;
}

.copy-link:hover {
    text-decoration: underline;
    color: #0056b3; /* Slightly darker blue on hover */
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    max-width: 400px;
    margin: auto;
}

.modal-content button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#cancel-button {
    background-color: #ccc;
    color: black;
}

#confirm-submit-button {
    background-color: #007BFF;
    color: white;
}
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    max-width: 400px;
    margin: auto;
}

.modal-content button {
    margin: 10px;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#cancel-button {
    background-color: #ccc;
    color: black;
}

#confirm-submit-button {
    background-color: #007BFF;
    color: white;
}

/* Update styles for the consent buttons */
#agree-reveal {
    background-color: #28a745; /* Green background */
    color: white;
    font-weight: bold;
    width: 100%; /* Make the button full width */
    margin-bottom: 10px;
}

#agree-reveal:hover {
    background-color: #218838; /* Darker green on hover */
}

#decline-reveal {
    background-color: #dc3545; /* Red background */
    color: white;
    font-weight: normal;
    width: 100%; /* Make the button full width */
}

#decline-reveal:hover {
    background-color: #c82333; /* Darker red on hover */
}

#faq-section {
    max-width: 600px;
    margin: 20px auto;
    margin: 30px auto 20px; /* Added margin-top for spacing */
}

#faq-section h3 {
    margin-bottom: 15px;
    text-align: center;
    color: #333;
}

#faq-heading {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    transition: background-color 0.2s ease-in-out;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    background-color: transparent;
    transition: background-color 0.2s ease-in-out;
}

.faq-question:hover {
    background-color: #e0e0e0;
}

.faq-icon {
    width: 15px; /* Fixed width to prevent shifting */
    margin-right: 10px;
    font-weight: bold;
    font-size: 18px;
    color: #007BFF;
    display: inline-block; /* Ensures the icon stays fixed in size */
    text-align: center;
}

.faq-answer {
    display: none;
    padding: 10px 20px;
    border-left: 3px solid #007BFF;
    margin-top: 5px;
    font-size: 14px;
    line-height: 1.6;
    background-color: transparent;
    border-radius: 5px;
}

#faq-content {
    padding-top: 10px; /* Padding to separate questions from heading */
}

/* Existing styles */

#faq-header {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
}

#faq-header .faq-icon {
    margin-right: 10px;
    font-weight: bold;
    font-size: 18px;
    color: #007BFF;
    display: inline-block;
    text-align: center;
    width: 15px; /* Keep icon width consistent */
}

#faq-header h3 {
    margin: 0;
    font-size: 18px;
}

/* About page specific styles */
.about-container {
    max-width: 600px; /* Adjust this value to make the column narrower or wider */
    margin: 0 auto; /* Center the content */
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-container h1, .about-container p {
    text-align: justify; /* Optional: Justify the text for a cleaner look */
}

.about-container h1 {
    text-align: center;
}

.beeline-logo {
    width: 50%; /* Adjust percentage as needed */
    height: auto;
}

.beeline-text {
    font-size: 0.8em; /* Shrinks the font size */
}
