html {
    overflow-x: hidden;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
    color: #333;
}

header,
main,
footer {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

header {
    background-color: #fff;
    border-radius: 5px;
    text-align: center;
}

h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.cta-button {
    background-color: #007BFF;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 1em;
    cursor: pointer;
}

.video-container {
    margin: 30px 0;
    text-align: center;
}

input {
    width: 100%;
    padding: 12px;
    font-size: 1em;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

input[type="radio"]:hover {
    cursor: pointer !important;
}

textarea {
    border: 1px solid #ccc;
    border-radius: 6px;
}

.blue,
.green {
    border: 0px;
    border-radius: 5px;
    color: white;
    padding: 10px;
    cursor: pointer;
}

.blue {
    background-color: #1976D2 !important;
    color: white;
    transition: background-color 0.2s ease;
}

.green {
    background-color: #00A651 !important;
    color: white;
    transition: background-color 0.2s ease;
}

.blue:hover {
    background-color: #1155A3 !important; /* Slightly darker blue */
}

.green:hover {
    background-color: #008F45 !important; /* Slightly darker green */
}

.row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.column {
    display: flex;
    flex-direction: column;
}

.collapsed {
    height: 0px;
    overflow: hidden;
    position: relative;
}

.expanded {
    height: 100%;
}

#caret,
.caret {
    cursor: pointer;
    position: relative;
    /* z-index: -1; */
}

.table-container {
    display: flex;
    background-color: white;
    justify-content: center;
    padding: 10px;
}

.table-container table {
    border-spacing: 0px;
}

.table-container table thead tr th {
    text-align: center;
    padding: 5px;
}

.table-container table tbody tr:nth-child(odd) {
    background-color: lightgray;
}

.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

input[type="checkbox"],
input[type="checkbox"]:hover {
    cursor: pointer;
}

input.password {
    width: 100%;
}

.error-message {
    background-color: darkred;
    color: white;
    padding: 5px;
    border-radius: 5px;
    position: fixed;
    text-align: center;
    bottom: 0px;
    width: 100%;
}

@media (max-width: 768px) {
    .row {
        flex-direction: column;
        align-items: center;
    }
}