/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #d9d9d9; /* Gray background */
    color: #2C2048; /* Main text color */
    height: 100vh;
}

a {
    cursor: pointer !important;
}

.bg-own-dark{
    background-color: #2C2048;
}

.bg-own-secondary{
    background-color: #2C2048;
}

/* Main container for inputs and results */
.dashboard-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 90%;
    max-width: 1100px;
    height: 80vh;
}

/* Results Section - Positioned at the Right Side */
.results-container {
    width: 55%;
    height: 500px;
    max-width: 1000px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-color: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    max-height: 80vh;
}

/* Accordion for result steps */
.accordion-button {
    background-color: #2C2048;
    color: #ffffff;
    font-weight: bold;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
}

.accordion-body {
    background-color: #ffffff;
    color: #2C2048;
}

.btn-own-long{
    width: 100%;
}

.btn-own-half{
    width: 47%;
}


@media (min-width: 992px) {
    .w-lg-25 {
        width: 25% !important;
    }
}

.accordion-button::after {
    filter: brightness(0) invert(1) !important;
}


.demo-button {
    display: inline-block;
    border: none;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--base-color-brand--teal), #2C2048 90%);
    color: var(--text-color--text-alternate);
    text-align: center;
    padding: 1rem 2.4rem;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow: 0 6px 24px 0 rgba(40, 75, 99, 0.13), 0 1.5px 4px rgba(60, 110, 113, 0.11);
    position: relative;
    overflow: hidden;
    transition: background 0.33s, box-shadow 0.2s, transform 0.12s;
    outline: none;
}

.demo-button:hover, .demo-button:focus {
    background: linear-gradient(100deg, #284b63, var(--base-color-brand--teal) 80%);
    color: var(--white, #fff);
    box-shadow: 0 10px 36px 0 rgba(60, 110, 113, 0.18);
    transform: translateY(-2px) scale(1.04);
    text-decoration: none;
}

.demo-button::after {
    content: "→";
    display: inline-block;
    margin-left: 1.1em;
    font-size: 1.2em;
    vertical-align: middle;
    opacity: 0.7;
    transition: margin-left 0.2s, opacity 0.2s;
}

.demo-button:hover::after, .demo-button:focus::after {
    margin-left: 1.6em;
    opacity: 1;
}




/* Wellmatix Styles */
.wellmatix-border {
    border: 2px solid transparent !important;
    background-image: linear-gradient(white, white), linear-gradient(to right, #2C2048, #E471AB) !important;
    background-origin: border-box !important;
    background-clip: padding-box, border-box !important;
}

/* ========================= */
/* === GLOBAL SCROLLBAR ==== */
/* ========================= */
/* Custom scrollbar for all pages */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6b5b95 100%);
}

/* Smooth scroll behavior for all pages */
html {
    scroll-behavior: smooth;
}