@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap');

html {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
    text-size-adjust: 100%;
}

body {
    background: #fff;
    color: rgba(0, 0, 0, 0.87);
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.375;
    margin: 0;
}

*,
::before,
::after {
    box-sizing: inherit;
}


*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background: none;
}

*::-webkit-scrollbar-thumb {
    background: none;
    transition: all 0.2s ease;
}

*:hover::-webkit-scrollbar-thumb {
    background: #ddd;
    transition: all 0.2s ease;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #777;
}


.container {
    display: flex;
    gap: 1.5rem;
    height: 100vh;
    margin: 0 auto;
    max-height: 600px;
}

.content-container {
    display: flex;
    flex: 1;
    flex-direction: column;
    overflow-y: auto;
    gap: 10px;
}

.content-block {
    border: 1px solid #F0F0F0;
}

.content-holder {
    padding: 20px;
}

.visualization-block {
    width: 58%;
    border: 1px solid #F0F0F0;
    position: relative;
}

.visualization-holder {
    height: 100%;
}

.loading-box {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 50%);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 10;
}

.loader {
    border: 5px solid #fff;
    border-bottom-color: transparent;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: rotation 1s linear infinite;
}

.loading-text {
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    margin: 0;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.heading-block {
    background: #F7F7F7;
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 15px;
    display: flex;
    justify-content: space-between;
}

.chip {
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    background: #ED6C02;
    color: #fff;
    padding: 3px 10px;
    border-radius: 12px;
    display: inline-block;
    vertical-align: top;
}

.title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    margin: 0;
}

.info-message {
    color: #fff;
    background: #eee;
    padding: 5px 10px;
    font-size: 16px;
    line-height: 20px;
    font-weight: bold;
    text-align: center; 
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    padding: 8px 12px;
    width: 100%;
    border: 1px solid rgb(0 0 0 / 42%);
    font-size: 1rem;
    line-height: 1.375;
    background: #fff;
    border-radius: 4px;
}

.settings-block .Select-control {
    border-color: rgb(0 0 0 / 42%);
    border-radius: 4px;
    height: 40px;
}

.settings-block .Select-input {
    height: 40px;
}

.settings-block .Select--single>.Select-control .Select-value,
.settings-block .Select-placeholder {
    line-height: 40px;
}

label {
    font-size: 1rem;
    line-height: 1.375;
    color: #000;
    display: block;
}

.chk-group input {
    margin: 0;
}

.chk-group label {
    font-size: 0.875rem;
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.chk-group label+label {
    margin-top: 5px;
}

.message-box {
    position: relative;
    padding-left: 34px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message-box .icon{
    position: absolute;
    left: 0;
    top: -2px;
    width: 24px;
    height: auto;
}

.slider-holder {
    padding: 12px 10px 32px !important;
}

.slider-holder .rc-slider-rail {
    background: rgba(25 118 210 / 38%);
}

.slider-holder .rc-slider-track {
    height: 6px;
    margin-top: -1px;
    background: #1976D2;
}

.slider-holder .rc-slider-dot {
    background: #1976D2;
    width: 2px;
    height: 2px;
    border: 0;
    bottom: 1px;
    margin-left: -1px;
}

.slider-holder .rc-slider-dot-active {
    background: rgba(255 255 255 / 80%);
}

.slider-holder .rc-slider-handle {
    width: 20px;
    height: 20px;
    margin-top: -8px;
    background: #1976D2;
    border: 0;
}

.slider-holder .rc-slider-mark {
    top: 24px;
    color: rgba(0 0 0 / 87%);
}

.slider-holder .rc-slider-mark-text {
    color: rgba(0 0 0 / 60%);
    font-size: 0.875rem;
}

.slider-holder .rc-slider-mark-text-active {
    color: rgba(0 0 0 / 87%);
}

.error-box {
    height: 100vh;
    margin: 0 auto;
    max-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgb(57, 77, 100);
    color: rgb(255, 255, 255);
    width: 100%;
    padding: 1.25rem;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}

.error-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.error-title {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
}

.error-heading img {
    width: 24px;
    margin-top: -3px;
}

.error-box p {
    margin: 8px 0 0;
}