html {
    overflow-y: scroll;
}

/* Error UI */
#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* Layout */
.page {
    position: relative;
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1;
}

.content {
    padding-top: 1.1rem;
}

/* Header and Navigation */
.container {
    width: 1000px;
    margin: 0 auto;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: white;
    border-bottom: 1px solid #ccc;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navigation {
    background: linear-gradient(to bottom, #666, #555);
    padding: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    flex: 1;
}

.nav-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 10px;
    text-align: center;
    font-size: 15px;
    /* font-weight: bold; */
    border-right: 1px solid #444;
    transition: background-color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-item:last-child .nav-link {
    border-right: none;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.nav-link:active {
    background-color: rgba(255, 255, 255, 0.2);
}

.help-icon {
    width: 20px;
    height: 20px;
    background-color: #666;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

/* Main Content Sections */
.main-heading {
    font-size: 36px;
    color: #666;
    font-weight: normal;
    margin-bottom: 5px;
    line-height: 1.2;
    border: none;
    outline: none;
}

.description {
    font-size: 17px;
    color: #333;
    line-height: 1.6;
   /* margin-bottom: 50px;*/
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.content-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}


.download-info{
    text-align:center;
    font-size:large;
}


.features-column {
    flex: 1;
    max-width: 70%;
}

.features-list {
    list-style: none;
    padding: 0;
}

    .features-list li {
        font-size: 16px;
        color: #333;
        margin-bottom: 8px;
        position: relative;
        padding-left: 15px;
    }

        .features-list li::before {
            content: "*";
            position: absolute;
            left: 0;
            color: #333;
            font-weight: bold;
        }

.button-column {    
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    padding-top: 15px;
    padding-right: 55px;
}

/* Metric Cards */
/*.metric-card {
    border-left: 4px solid #007bff;
    transition: all 0.3s ease;
}

    .metric-card:hover {
        background-color: #e9ecef !important;
    }*/

/* Footer */
.footer {
    background-color: #fff;
    color: blue;
    /* padding: 30px 20px; */
    margin-top: 50px;
    font-size: smaller;
    margin-top: 100px;
}

    .footer p {
        margin-bottom: 5px;
        line-height: 1.2;
    }

    .footer #footer {
        text-align: center;
    }

    .footer a {
        color: blue;
        text-decoration: none;
    }        

    .footer span {
        margin: 0 8px;
        color: #ccc;
    }

.footer-bottom {
    text-align: center;
    color: #ccc;
    font-size: 12px;
}

/* Bootstrap Container Override */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

/* Responsive Design */
@media (max-width: 1020px) {
    .container {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .header-section {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        flex-wrap: wrap;
    }

    .nav-item {
        flex: 1;
        min-width: 150px;
    }

    .content-section {
        flex-direction: column;
        gap: 20px;
    }

    .features-column {
        max-width: 100%;
    }

    .button-column {
        text-align: center;
    }

    .main-heading {
        font-size: 28px;
    }

    .description,
    .features-list li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 24px;
    }

    .description,
    .features-list li {
        font-size: 14px;
    }
}

#content {
    padding: 0px 25px 25px 25px;
}
