body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;

    .lightGreyBackground {
        background-color: #e8e8e8;
    }

}

a {
    color: blue;
    text-decoration: none;
}

.inlineBlock {
    display: inline-block;
}

.block {
    display: block;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.nowrap {
    white-space: nowrap;
}

details {
    cursor: pointer;
    margin: 16px 0;
    color: blue;
}

.darkGrayBackground {
    background-color: #333;
}

.outerContainer {

    &.whiteBackground {
        background-color: #fff;
    }

    &.relative {
        position: relative;
    }

    &.absolute {
        position: absolute;
    }

    &.flex {
        display: flex;
    }

    &.height100percent {
        height: 100%;
    }

    &.width100percent {
        width: 100%;
    }
}

.lightBorder {
    border: 1px solid #e8e8e8;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, .2);
    padding: 16px;
    border-radius: 6px;

}

.horizontalMarginCenter {
    margin: 0 auto;
}

.textAlignCenter {
    text-align: center;
}

.textAlignLeft {
    text-align: left;
}

.absoluteHorizontalCenter {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.verticalCenter {
    margin-top: 50%;
    transform: translateY(-50%);
}

.perfectCenter {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.marginTop30 {
    margin-top: 30px;
}

.marginBottom30 {
    margin-bottom: 30px;
}

.lightSideBorders {

    border-left: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;

    padding: 16px;

    &.height100percent {
        height: 100%;
    }

    &.whiteBackground {
        background-color: #fff;
    }

    &.inlineBlock {
        display: inline-block;
    }

    &.block {
        display: block;
    }

    &.relative {
        position: relative;
    }

    &.absolute {
        position: absolute;
    }

    &.horizontalCenter {
        margin-left: 50%;
        transform: translateX(-50%);
    }

}

.whiteBackground {
    background-color: #fff;
}

.minWidth320 {
    min-width: 320px;
}

input[type="text"], input[type="password"], input[type="tel"], textarea {
    display: block;
    margin-bottom: 25px;
}

label {
    display: block;
}

button {
    display: block;

    &.disabled {
        opacity: .3;
        pointer-events: none;
        user-select: none;
    }
}

.modal-container {
    display: block;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    z-index: 1000;
    margin: auto 0;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modalContent {
    min-width: 300px;
}

.modalButtons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    justify-content: flex-end;
}

.confirmButton,
.cancelButton,
.closeModal {
    padding: 8px 16px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.confirmButton {
    background-color: #007bff;
    color: white;
    border-color: #0069d9;
}

.confirmButton:hover {
    background-color: #0069d9;
}

.cancelButton,
.closeModal {
    background-color: #f8f9fa;
    color: #333;
}

.cancelButton:hover,
.closeModal:hover {
    background-color: #e9ecef;
}
.blurrable {
    transition: all 0.5s ease-in-out;
}
.blurred {
    filter: blur(15px);
    pointer-events: none;
    user-select: none;
}

button.realButton {
    padding: 6px 12px;
    border: 1px solid #888;
    border-radius: 8px;
    cursor: pointer;
    background: #f4f4f4;
    transition: all 0.2s ease;
}

button.realButton:hover {
    border-color: #333;
    background-color: #e8e8e8;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* Style toggle links/buttons. Any class ending in "_toggle_link" */
*[class$="_toggle_link"] {
    color: blue;
    cursor: pointer;
}

/* Reset button styles for toggle buttons */
button[class*="_toggle_link"] {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    text-align: left;
    color: blue;
    margin: 1em 0;
    cursor: pointer;
}

.fauxLink {
    color: blue;
    cursor: pointer;
}

/* Terms agreement checkbox styling */
.terms-agreement {
    margin: 16px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label span {
    color: #333;
}

.checkbox-label a {
    color: blue;
    text-decoration: underline;
}

.checkbox-label a:hover {
    text-decoration: none;
}

/* Triangle icon for toggle_arrow links */
.toggle_arrow::after {
    content: '▶';
    display: inline-block;
    margin-left: 8px;
    transition: transform 0.3s ease;
    font-size: 0.75em;
}

/* Rotate triangle down when toggle is open */
.toggle_arrow.toggle_arrow_open::after {
    transform: rotate(90deg);
}

.toggle_content_open {
    border-left: 2px solid rgba(0, 0, 0, 0.3);
    padding-left: 16px;
}

/** Hides elements with class ending in "_toggle_content" */
*[class$="_toggle_content"] {
    display: none;
}

/* Prevent Cloudflare Turnstile widget from capturing keyboard focus */
#ts-widget {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 550px) {
    .lightBorder.marginBottom30,
    .lightBorder.marginTop30 {
        margin-bottom: 0;
        margin-top: 0;
    }
}