:root {
    --fv-purple: #4c3db8;
    --fv-purple-hover: #3b2fa0;
    --fv-purple-soft: rgba(76, 61, 184, 0.1);
    --fv-check-gray: #8f929a;
}

/* Make the page layout stretch to viewport and let the table area grow */
html, body, #app {
  height: 100%;
}

.page-shell {
    min-height: calc(100vh - 55px);
    display: flex;
    flex-direction: column;
}

/* The body area grows to fill available space and becomes scrollable */
.page-body {
  flex: 1 1 auto;
  min-height: 0; /* important for flex children so overflow works correctly */
  display: flex;
  flex-direction: column;
}

.page-body .table-responsive {
  flex: 1 1 auto;
  min-height: 0; /* important to allow proper scrolling in flexbox */
  overflow: auto;
}

.exec-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 24px;
    align-items: start;
    margin-bottom: 12px;
}

.kpi-card {
    padding: 12px 14px;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    background: #fff;
}

.kpi-label {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: .02em;
}

.kpi-value {
    font-size: 34px;
    line-height: 1.1;
    font-weight: 700;
    margin-top: 4px;
}

.kpi-sub {
    font-size: 12px;
    color: #6c757d;
    margin-top: 2px;
}

.output-record-header {
    display: grid;
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    gap: 24px;
    align-items: start;
    margin-bottom: 12px;
}

.output-record-header-card {
    padding: 12px 14px;
    border-radius: 10px;
}

.output-record-header-label {
    font-size: 0.70rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6c757d;
}

.output-record-header-value {
    font-size: 17px;
    line-height: 1.1;
    font-weight: 700;
    margin-top: 4px;
}

.output-record-version-card {
    padding: 12px 14px;
    border: 1px solid #6c757d;
    border-radius: 10px;
}

.output-record-changes-header {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 24px;
    align-items: start;
    margin-bottom: 12px;
}

.output-record-changes-header-card {
    padding: 12px 14px;
    border-radius: 10px;
}

.output-record-changes-card {
    padding: 12px 14px;
    border: 1px solid #6c757d;
    border-radius: 10px;
}

.fv-history-card {
    background: rgba(60,36,182,0.08);
    border-radius: 14px;
    border: 1px solid rgba(88, 63, 154, 0.12);
}

.fv-history-header {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.fv-badge {
    border-radius: 999px;
    padding: .45rem .65rem;
}

.fv-badge-metric {
    border: 1px solid rgba(0,0,0,0.10);
}

.fv-lastmodified {
    white-space: nowrap;
}

.fv-change-card {
    width: 90%;
    padding-left: 1.5rem;
    background: rgba(88,63,154,0.09);
    border-radius: 14px;
    width: 85%;
    align-self: center;
}

.fv-change-body {
}

.fv-diff-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .15rem 0;
}

.fv-diff-key {
    color: rgba(0,0,0,0.70);
}

.fv-diff-val {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    text-align: right;
}

.fv-diff-reliability {
    color: darkblue;
    text-align: left;
}

.fv-arrow {
    display: flex;
    justify-content: center;
    margin: 1.2rem 0;
    opacity: 0.35;
    font-size: 1.2rem;
}


.details-table td {
    padding: 2px 10px;
    font-size: 12px;
    color: #495057;
}

    .details-table td:first-child {
        color: #6c757d;
        white-space: nowrap;
    }





.report-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 18px;
    align-items: start;
    margin: 10px 0 18px;
}

    .report-row .chart {
        display: flex;
        justify-content: center;
        padding-top: 4px;
    }


.details-metadata {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 14px;
    background: #fff;
}

.details-title {
    font-size: 13px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.details-grid {
    display: grid;
    grid-template-columns: max-content 1fr;
    column-gap: 16px;
    row-gap: 4px;
}

.details-label {
    font-size: 16px;
    color: #6c757d;
    white-space: nowrap;
}

.details-value {
    font-size: 16px;
    color: #212529;
}

.details-actions {
    margin-top: 8px;
}

.report-container {
    max-width: 1200px;
}




.fv-quote-rotator {
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.fv-quote {
    white-space: pre-line;
    transition: opacity 180ms ease-in-out;
}

.fade-in {
    opacity: 1;
}

.fade-out {
    opacity: 0;
}



/* Fixed under topbar (55px), small and centered */
.fvqm-shell {
    position: fixed;
    top: 55px; /* your topbar height */
    left: 50%;
    transform: translateX(-50%) translateY(-110%);
    z-index: 1050;
    width: min(720px, calc(100vw - 32px)); /* smaller, responsive */
    pointer-events: none; /* feels like a “statusbar”, no layout-clicks */
    opacity: 0;
    transition: transform 220ms ease, opacity 180ms ease;
}

    /* Visible: slides down */
    .fvqm-shell.fvqm-visible {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    /* Hidden: slides up (back into the topbar) */
    .fvqm-shell.fvqm-hidden {
        transform: translateX(-50%) translateY(-110%);
        opacity: 0;
    }

/* “Pill” look */
.fvqm-pill {
    pointer-events: auto; /* only the pill itself can be interactive */
    margin: 8px auto 0 auto;
    border-radius: 8px;
    background: rgba(120, 120, 120, 0.35); /* subtle, matches your screenshot */
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 8px 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Horizontally centered, wrapped */
.fvqm-items {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 12px;
    line-height: 1;
    color: #fff;
    user-select: none;
    white-space: nowrap;
}

.fvqm-item {
    opacity: 0.95;
}

.fvqm-name {
    font-weight: 600;
}

.fvqm-sep {
    margin: 0 4px;
    opacity: 0.8;
}

.fvqm-count {
    font-weight: 700;
}


.expander-header {
    display: inline;
}




.page .sidebar {
    flex: 0 0 260px;
    max-width: 260px;
    transition: max-width 160ms ease, flex-basis 160ms ease, transform 160ms ease, opacity 160ms ease;
}

/* Topbar */
.page .top-row {
    min-height: 55px;
    display: flex;
    align-items: center;
    gap: .5rem;
}

/* toggle button in topbar */
.fv-chrome-toggle {
    margin-right: .5rem;
    width: 32px;
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background-color: transparent;
    border: 1px solid var(--fv-purple);
    color: var(--fv-purple);
}

    .fv-chrome-toggle:hover {
        background-color: var(--fv-purple-soft);
        border-color: var(--fv-purple-hover);
        color: var(--fv-purple-hover);
    }

/* Collapsed state */
.page.fv-collapsed .sidebar {
    flex-basis: 0;
    max-width: 0;
    overflow: hidden;
    transform: translateX(-100%);
    opacity: 0;
}

.page.fv-collapsed .top-row {
    min-height: 0 !important;
    height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    overflow: hidden;
    border: 0;
}

/* Floating hamburger (always before Body) */
.fv-chrome-fab {
    position: fixed;
    top: 1px;
    left: 1px;
    z-index: 5000;
    width: 32px;
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background-color: transparent;
    border: 1px solid var(--fv-purple);
    color: var(--fv-purple);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

    .fv-chrome-fab:hover {
        background-color: var(--fv-purple-soft);
        border-color: var(--fv-purple-hover);
        color: var(--fv-purple-hover);
    }

.fv-chrome-toggle .oi,
.fv-chrome-fab .oi {
    font-size: 14px;
}

.user-auth-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: 16px; /* distance to edge */
}

.user-email {
    font-size: 0.85rem;
    color: #aaa;
    white-space: nowrap;
}

.auth-button {
    font-size: 0.8rem;
    color: #bbb;
    background: none;
    border: none;
    padding: 4px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.15s ease;
}

    .auth-button:hover {
        color: white;
        background-color: rgba(255,255,255,0.1);
    }

.user-email {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.user-auth-bar {
    height: 100%;
}

table.clean-table {
    border-collapse: separate;
    border-spacing: 0 8px; /* verticale spacing between rows */
}

    table.clean-table td {
        padding: 4px 20px 4px 0;
    }





/* Animation of splash screen logo */
#app.app-hidden-during-splash {
    visibility: hidden;
}

#fv-splash {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: white;
    opacity: 1;
    transition: opacity 500ms ease;
}

    #fv-splash.fv-splash-hide {
        opacity: 0;
        pointer-events: none;
    }
    
.fv-splash-logo {
    width: min(70vw, 560px);
    margin: 18vh auto 0;
}

.fv-logo {
    width: 100%;
    height: auto;
    color: #000;
}

/* Initial state */
#FactVault_name,
#by,
#KomawiDevelopmentLogo,
#ControlBoxFront,
#ControlBoxMiddle,
#ControlBoxRear,
#ControlBoxGapFront,
#ControlBoxGapMiddle,
#ControlBoxGapRear,
#CheckmarkFront,
#CheckmarkMiddle,
#CheckmarkRear {
    opacity: 0;
}

/* Controlboxes */
#fv-splash #ControlBoxFront {
    animation: fvFadeInNoMove 0.2s ease forwards 0.2s;
}

#fv-splash #ControlBoxMiddle {
    animation: fvFadeInNoMove 0.2s ease forwards 0.3s;
}

#fv-splash #ControlBoxRear {
    animation: fvFadeInNoMove 0.2s ease forwards 0.4s;
}

/* Controlbox gaps */
#fv-splash #ControlBoxGapFront {
    animation: fvFadeInNoMove 0.2s ease forwards 0.2s, fvFadeOutNoMove 0.2s ease forwards 0.8s;
}

#fv-splash #ControlBoxGapMiddle {
    animation: fvFadeInNoMove 0.2s ease forwards 0.3s, fvFadeOutNoMove 0.2s ease forwards 0.9s;
}

#fv-splash #ControlBoxGapRear {
    animation: fvFadeInNoMove 0.2s ease forwards 0.4s, fvFadeOutNoMove 0.2s ease forwards 1.0s;
}

/* Checkmarks */
#fv-splash #CheckmarkFront {
    animation: fvFadeInNoMove 0.2s ease forwards 0.8s;
}

#fv-splash #CheckmarkMiddle {
    animation: fvFadeInNoMove 0.2s ease forwards 0.9s;
}

#fv-splash #CheckmarkRear {
    animation: fvFadeInNoMove 0.2s ease forwards 1.0s;
}

/* FactVault name */
#fv-splash #FactVault_name {
    animation: fvFadeIn 0.4s ease forwards 0.9s;
}

/* by */
#by {
    animation: fvFadeInBy 0.45s ease forwards 1.5s;
}

/* Komawi */
#fv-splash #KomawiDevelopmentLogo {
    animation: fvFadeInKomawiDevelopmentLogo 0.6s ease forwards 1.7s;
}

@keyframes fvFadeInNoMove {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fvFadeOutNoMove {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fvFadeIn {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fvFadeInBy {
    from {
        opacity: 0;
        transform: translate(331.975px, 163.522px);
    }

    to {
        opacity: 1;
        transform: translate(331.975px, 159.522px);
    }
}

@keyframes fvFadeInKomawiDevelopmentLogo {
    from {
        opacity: 0;
        transform: translate(253.006px, 198.016px);
    }

    to {
        opacity: 1;
        transform: translate(253.006px, 194.016px);
    }
}

@keyframes fvFadeOut {
    from {
        opacity: 1;
    }


    to {
        opacity: 0;
    }
}

/*Block scrollbar during splash animation*/
body:has(#fv-splash:not(.fv-splash-hide)) {
    overflow: hidden;
}





/*Custom CSS grid*/
.fv-form {
    max-width: 1100px;
}

.fv-field {
    display: grid;
    grid-template-columns: minmax(260px, max-content) minmax(320px, 760px);
    column-gap: 24px;
    align-items: start;
    margin-bottom: 8px;
}

    .fv-field label {
        white-space: nowrap;
    }

    .fv-field input:not([type="checkbox"]),
    .fv-field textarea,
    .fv-field select {
        width: 100%;
        max-width: 760px;
        box-sizing: border-box;
    }

    .fv-field textarea {
        min-height: 72px;
        resize: vertical;
    }

    .fv-field input[type="checkbox"] {
        justify-self: start;
        align-self: center;
        margin-top: 0;
    }

@media (max-width: 1100px) {
    .fv-form {
        max-width: 100%;
    }

    .fv-field {
        grid-template-columns: 1fr;
        row-gap: 4px;
    }

        .fv-field label {
            white-space: normal;
        }

        .fv-field input:not([type="checkbox"]),
        .fv-field textarea,
        .fv-field select {
            width: 100%;
            max-width: none;
        }
}


/*FactVault logo top left*/
.nav-enterprise-logo {
    width: 200px;
    margin: 0 auto;
}

    .nav-enterprise-logo svg {
        display: block;
        width: 150px;
        height: auto;
    }

















.loader {
    position: relative;
    width: 8rem;
    height: 8rem;
    margin: 5vh auto 1rem auto;
}

.loading-progress {
    width: 100%;
    height: 100%;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #1b6ec2;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

.factvault2 {
    color: #5555AA
}

.factvault2area {
    background-color: #3C24B6
}

h5 {
    margin-top: 32px;
    font-size: 1.1em;
}

.auth a {
    display: inline-block !important;
    width: auto !important;
    max-width: max-content;
}

.user-auth-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.5rem 0;
    flex-wrap: wrap;
}

.user-email {
    font-size: 1rem;
    color: white;
    flex: 1 1 auto;
    min-width: 0;
    overflow-wrap: break-word;
}

.logout-link {
    display: inline-block;
    padding: 8px 16px;
    background-color: #0071c1;
    color: white;
    text-decoration: none;
    white-space: nowrap;
    margin-left: 1rem;
    border-radius: 4px;
    font-weight: 500;
    border: none;
    transition: background-color 0.3s ease;
}

    .logout-link:hover {
        background-color: #005a9e;
        color: white;
        text-decoration: none;
    }


.factvault2card {
    border-color: #3C24B6
}

.actionicon {
    margin-right: 0; /* vervangen door gap */
    padding: 6px;
    border: none;
    border-radius: 6px;
    background-color: transparent;
    color: #6c757d;
    opacity: 0.55; /* default minder aanwezig */

    transition: background-color 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease, color 0.15s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    /* Hover / focus = pas aandacht trekken */
    .actionicon:hover,
    .actionicon:focus {
        opacity: 1; /* full zichtbaar */
        background-color: #f5f7fa; /* iets subtieler dan #f0f0f0 */
        outline: none;
        box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.15); /* bootstrap blue, softer */
        color: #0d6efd;
    }

    /* Delete iets meer presence houden */
    .actionicon.text-danger {
        opacity: 0.7;
    }

        .actionicon.text-danger:hover,
        .actionicon.text-danger:focus {
            opacity: 1;
            color: #dc3545;
            background-color: rgba(220, 53, 69, 0.08);
            box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.15);
        }

.button-strip {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
}

.factset-inline-open {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 10px;
    white-space: nowrap;
}

.row {
    margin-bottom: 5px;
}

/* Reusable responsive text container */
.responsive-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

/* Ensure .col-2 and .col-4 behave responsively */
.col-2,
.col-4,
.col-3,
.col-9 {
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.col-4 {
    flex: 1 1 0;
}

.col-2 {
    flex: 0 0 auto;
}

/*On smaller screens, allow wrapping instead of clipping */
@media (max-width: 768px) {
    .responsive-text {
        white-space: normal;
        word-wrap: break-word;
    }
}

input[type="checkbox"]:disabled + label::before {
    background: #FF0000;
}

input[type="checkbox"]:disabled + label:hover::before {
    background: #00FF00;
    border: 1px solid #d4d4d5;
}

.splash-image {
    text-align: center;
    margin: 10vh auto auto auto;
    width: 50%;
}

    .splash-image img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

.provided-by {
    text-align: center;
    margin: 10vh auto auto auto;
    width: 50%;
}

.wide-even-table {
    width: 100%;
    table-layout: fixed;
}

    .wide-even-table th,
    .wide-even-table td {
        width: auto;
        text-align: left; /* or center, as needed */
        word-break: break-word;
    }

.counted-value-table {
    width: 100%;
    table-layout: fixed;
}

.graph-tooltiptable {
    width: 100%;
    margin: 8px;
    border-collapse: collapse;
}

    .graph-tooltiptable th {
        text-align: left;
        padding: 4px 8px;
        white-space: nowrap;
        font-weight: bold;
    }

    .graph-tooltiptable td {
        text-align: left;
        padding: 4px 8px;
        white-space: nowrap;
    }

.graph-tooltip {
    position: relative;
    display: inline-block;
}

    .graph-tooltip .graph-tooltiptext {
        visibility: hidden;
        background-color: black;
        color: #fff;
        text-align: left;
        border-radius: 6px;
        padding: 10px;
        position: absolute;
        z-index: 1;
        font-size: 14px;
        white-space: normal;
    }

    .graph-tooltip:hover .graph-tooltiptext {
        visibility: visible;
    }

.bar-chart-container {
    display: inline-block;
}

/* Key Hiding */
.input-wrapper {
    position: relative;
}

.masked-input {
    padding-right: 2.5rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.copy-btn {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

    .copy-btn i {
        font-size: 1.2rem;
        color: #000;
    }

    .copy-btn:hover i {
        color: #0d6efd;
    }

.text-copy-btn {
    background-color: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    margin: 0 0 0 5px;
}

    .text-copy-btn i {
        font-size: 1.2rem;
        color: #000;
    }

    .text-copy-btn:hover i {
        color: #0d6efd;
    }


.settings-table {
    border-collapse: separate;
    border-spacing: 0 6px;
}

    .settings-table td {
        vertical-align: middle;
        padding: 4px 0;
    }

        .settings-table td:first-child {
            min-width: 260px;
            padding-right: 32px;
            white-space: nowrap;
        }


.health-ok {
    color: var(--bs-success);
}

.health-error {
    color: var(--bs-danger);
}

.inherited-value {
    color: var(--bs-secondary);
}

.numeric-value {
    text-align: right;
}

.table-scroll {
    overflow-x: auto;
}

.reliability-cell {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.rgb-indicator {
    flex: 0 0 auto;
    line-height: 1;
}

.fv-color-annotated {
    position: relative;
    display: inline-block;
}

.fv-color-annotation-on::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    width: max(100%, 10px);
    height: 2px;
    background-color: var(--fv-annotation-color, #000);
    border-radius: 999px;
}

.fv-color-annotation-inherited::after {
    opacity: 0.45;
}

@media print {
    .fv-color-annotated::after {
        display: none;
    }
}


.fv-url-with-copy {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
}

.fv-url-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}


.progression-summary {
    padding: 14px 16px;
}

.progression-scroll {
    overflow-x: auto;
}

.progression-table {
    border-collapse: separate;
    border-spacing: 0;
    width: max-content;
    min-width: 100%;
}

    .progression-table th {
        left: 0;
        z-index: 1;
        background: #fff;
        color: #6c757d;
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: .04em;
        font-weight: 700;
        padding: 6px 14px 6px 0;
        white-space: nowrap;
    }

    .progression-table td {
        padding: 6px 18px;
        white-space: nowrap;
        border-left: 1px solid #edf0f3;
        vertical-align: top;
    }

    .progression-table tr + tr th,
    .progression-table tr + tr td {
        border-top: 1px solid #f1f3f5;
    }

    .progression-table td:last-child {
        font-weight: 700;
    }

.progression-version {
    font-weight: 700;
    color: var(--fv-purple);
}

.progression-date {
    color: #495057;
    font-size: 0.85rem;
}

.progression-muted {
    color: #6c757d;
}

.fv-field .fv-color-annotated {
    justify-self: start;
}


.output-record-header-card-factset {
    display: flex;
    align-items: center;
}

.factset-version-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.factset-version-icon {
    flex: 0 0 auto;
    opacity: 0.9;
}

.auth-button {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 160px;
    padding: 6px 10px;
    margin: 6px 0;
    border: 1px solid #505050;
    border-radius: 6px;
    background-color: white;
    color: #111827;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
}

    .auth-button:hover {
        background-color: #CFE2FF;
        border-color: #505050;
        color: #111827;
    }

/* ICON BASIS */
.auth-icon {
    width: 16px;
    height: 16px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.microsoft {
    background-image: url("/images/microsoft.svg");
}

.google {
    background-image: url("/images/google.svg");
}
