html {
    font-family: "Inter", "system-ui";
}

@supports (font-variation-settings: normal) {
    html {
        font-family: "InterVariable", "system-ui";
    }

    /* If using the variable font */
}

main {
    /* font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    font-weight: bold; */
    height: 100%;
}

.background-image {
    background-image: url('/images/neustark-home.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
}

.full-height {
    height: 70vh;
}

.portal-btn {
    width: 200px;
    height: 50px;
    border-radius: 25px;
    font-weight: bold;
}

.white {
    color: white;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    font-size: 4rem;
}

.btn-outline-primary {
    color: #f05a22 !important;
    border-color: #f05a22 !important;
}

.btn-outline-primary:hover {
    background-color: #fbf9f6 !important;
}

.text-bg-okay {
    background-color: #75D71E !important;
    color: #fff !important;
}

.text-bg-warning {
    background-color: #f05a22 !important;
    color: #fff !important;
}

.text-bg-info {
    background-color: #6d6e71 !important;
    color: #fff !important;
}

.card {
    background-color: #fbf9f6;
}

.ag-theme-alpine {
    --ag-borders: none;
    /* --ag-header-background-color: #FBB040; */
}


.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
}
.actions {
    margin-right: 0;
}

.actions button {
    margin-right: 10px;
}
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup-content {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
}
.actions {
    position: absolute;
    top: 10px;
    right: 10px;
}
.flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.input-style {
    border: 1px solid #f05a22;
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
    margin: 0.1rem 0;
    width: 100%;
}