﻿@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans",Arial,Helvetica,Sans-Serif;
}
main {
    font-size: 13px;
    line-height: 1.42857143;
}
pre {
    background: #e9e9e9;
    width: calc(100% - 18px);
    border: 1px solid #000;
    color: #000;
}
.copy {
    cursor: copy;
    user-select: none;
}

.blockHeader {
    background-color: #5dbca5;
    padding: 10px;
    color: #15254C;
    border-radius: 4px;
}

.btn-success {
    background-color: #5dbca5;
    border: 1px solid #5dbca5;
    color: #15254C;
}

.btn-success.focus, .btn-success:focus {
    box-shadow: 0 0 0 .2rem #5dbca5;
}
.btn-success:hover {
    color: #15254C;
    background-color: #5dbca5;
    border-color: #5dbca5;
}
.btn-success:not(:disabled):not(.disabled).active, .btn-success:not(:disabled):not(.disabled):active, .show > .btn-success.dropdown-toggle {
    color: #15254C;
    background-color: #5dbca5;
    border-color: #5dbca5 !important;
}
.btn-success.disabled, .btn-success:disabled {
    color: #15254C;
    background-color: #5dbca5;
    border-color: #5dbca5;
}


/**CSS For Loading Spinners*/
.loading-state {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 10px solid #ddd;
    border-top-color: #40d4b0;
    animation: loading 1s linear infinite;
}

@keyframes loading {
    to {
        transform: rotate(360deg);
    }
}

/* Style the scrollbar itself */
::-webkit-scrollbar {
    width: 8px; /* Adjust the width here */
    height: 8px; /* If you want to style the horizontal scrollbar as well */
}

/* Style the scrollbar track (background of the scrollbar) */
::-webkit-scrollbar-track {
    background: #f1f1f1; /* You can change this color as well */
}

/* Style the scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
    background-color: #15254C; /* The color you want for the scrollbar */
    border-radius: 10px; /* Optional: gives rounded corners to the thumb */
}

    /* Style the scrollbar thumb when hovered */
    ::-webkit-scrollbar-thumb:hover {
        background-color: #1d3658; /* Darker shade when hovered, optional */
    }