:root {
    scroll-behavior: auto;
    --base-color: #5b5675;
    --heading-color: #141125;
    --primary-color: #5138ee;
    --light-color: #f8f7fc;
    --yellow-color: #ffc800;
    --border-color: #edebfd;
    --base-font: 'Inter', sans-serif;
    --heading-font: 'Poppins', sans-serif;
}

.file {
    opacity: 0;
    width: 0.1px;
    height: 0.1px;
    position: absolute;
  }

  .file-input label {
    display: block;
    position: relative;
    width: 200px;
    height: 50px;
    border-radius: 25px;
    background: var(--primary-color);
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: transform .2s ease-out;
  }

  input:hover + label,
input:focus + label {
  transform: scale(1.02);
}

input:focus + label {
    outline: 1px solid #000;
    outline: -webkit-focus-ring-color auto 2px;
  }

.flowchart h2, .flowchart p {
    font-size: 30px;
    text-align: right;
}

.flowchart p {
    font-size: 30px;
    text-align: right;
    margin-right: 250px;
}

#image-results img {
    border: 1px solid var(--border-color);
    margin-left: 20px;
}

img.preview-result {
    max-height: 100px;
}

#image-results .row {
    padding: 5px 0;
    border-bottom: 1px solid var(--border-color);
}

#image-results a {
    color: #FFF;
}

#image-results a:hover {
    text-decoration: underline;
}

#image-results {
    text-align:  right;
}

a:hover {
    text-decoration: underline;
}

.link-widget a, .sub-title a, .dark-body p a {
    color: var(--yellow-color);
}

.loader {
    width: 48px;
    height: 48px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

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

    @media (max-width: 991px) {
        #image-results img {
            margin-left: 0;
        }
    }

    .nav-outer {
        justify-content: center;
    }

    .footer-section {
        border-top: 1px solid var(--border-color);
        padding-top: 40px;
    }