* {
    font-family: helvetica;
    background-color: white;
}

body {
    background-color: white;
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 25%, rgba(0,0,0,1) 25%);
    margin-bottom: 0px !important;
}

h4 {
    margin-bottom: 25px;
}

.btn-primary, .bg-primary {
    background-color: #41b3a1 !important;
}

.text-row {
    padding-left: 10px;
    font-size: 16px;
    text-align: left;
    font-family: helvetica;
    background-color: transparent;
}

    .text-row span {
        background-color: transparent;
    }

.text-bold {
    font-weight: 600;
}

.title-primary {
    text-align: center;
    font-size: 20px;
    font-weight: 450;
}

.text-grey {
    color: grey !important;
    margin-top: 3rem;
}

.centered-grey {
    color: grey !important;
    text-align: center;
}

.bold-title {
    font-weight: 700;
    font-size: 20px;
    text-align: left;
}

bordered-table {
    width: 100% !important;
    margin: 20px 0;
    border-collapse: collapse;
}

.bordered-table td {
    border: 5px solid #F2F2F3;
    padding: 8px 12px 8px 12px;
    text-align: center;
}

.bordered-table td:not(:has(span)) {
    color: grey;
}

.link {
    color: #4C4C4C;
    font-weight: 400;
    font-size: 14px;
}

.nb-button {
    background-color: #CF072C;
    width: 50%;
    padding: 10px;
    font-size: 16px;
    color: white;
    border: none;
    border-radius: 5px;
}

.loader-container {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    position: fixed; /* Fix position relative to the screen */
    top: 0;
    left: 0;
    width: 100%; /* Full screen width */
    height: 100%; /* Full screen height */
    background-color: rgba(0, 0, 0, 0.3); /* Semi-transparent background to dim the screen */
    z-index: 9999; /* Ensure it stays on top */
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    background: linear-gradient(0deg, rgba(255, 61, 0, 0.2) 33%, #CF072C 100%);
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

    .loader::after {
        content: '';
        box-sizing: border-box;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        opacity: 0;
    }

@keyframes rotation {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.text-button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 65%;
}

    .text-button-wrapper .text-row,
    .text-button-wrapper .nb-button {
        width: 100%;
        text-align: center;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.nb-button {
    margin-top: 10px;
}

.text-row .link {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.border-primary {
    border: 5px solid #41b3a1 !important;
}

.bg-dark {
    background-color: white !important;
}

.bg-danger {
    background-color: #ed1846 !important;
}

.bg-banner {
    background-color: #523726 !important;
}

header img {
    max-width: 76px;
    max-height: 36px;
}
