﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');

/* --- Global layout fix --- */
html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
    /* Make the body a flex container to push footer to the bottom */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: visible !important;
    overflow-y: auto !important;
}

main {
    /* Allow main to grow and push footer down */
    flex: 1 0 auto;
}

/* --- Validation styles --- */
.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

/* --- Links and UI --- */
.button-link {
    text-decoration: unset;
}

/* --- Blazor error box --- */
#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;
    }

/* --- Titles --- */
.title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 0.625rem;
}

    .title.title-secondary {
        padding-top: 0.313rem;
        padding-bottom: 0;
        color: var(--bs-secondary-color);
    }

.title-header-text {
    font-size: 2.5rem;
    line-height: 3rem;
    font-weight: 600;
    letter-spacing: 0rem;
    padding: 0.3125rem 0;
}

.title-content-text {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 2.5rem;
    letter-spacing: 0rem;
}

/* --- Centered content blocks --- */
.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.block-content {
    width: 31.25rem;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    max-width: 100%;
}

/* --- Separator --- */
.or {
    display: flex;
    flex-direction: row;
    align-items: center;
}

    .or .or-line {
        border-bottom: 1px solid var(--bs-body-color);
        width: 100%;
        opacity: 0.2;
    }

    .or .or-text {
        padding: 0 0.625rem;
        font-size: 0.75rem;
        line-height: 1.125rem;
        color: var(--bs-body-color);
        opacity: 0.7;
    }

/* --- Links area --- */
.links-area {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding-top: 0.625rem;
}

.links-container {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    align-items: center;
}

    .links-container .dot {
        height: 0.3125rem;
        width: 0.3125rem;
        margin: 0 0.1875rem;
        border-radius: 50%;
        background-color: var(--bs-body-color);
        opacity: 0.7;
    }

/* --- Layout blocks --- */
.manage-layout {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

/* --- Info messages --- */
.info-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    background: var(--bs-primary);
    z-index: -1;
}

.info-message {
    padding: 0.625rem 1rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .info-message.info-panel {
        margin-bottom: 0.625rem;
    }

/* --- Manage content --- */
.manage-content {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.large-input {
    height: 4.3125rem;
    font-size: 1.875rem;
}

.title-content-text-secondary {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.button-group {
    display: flex;
    flex-direction: row;
    gap: 0.625rem;
}

.confirm-button {
    margin-top: 0.3125rem;
}

/* --- Responsive display --- */
.display-desktop {
    display: block;
}

.display-mobile {
    display: none;
}

@media (max-width: 768px) {
    .display-desktop {
        display: none;
    }

    .display-mobile {
        display: block;
    }
}

/* --- Social login buttons --- */
.social-btn {
    font-weight: 600;
    padding: .6rem 1rem;
    border-radius: .4rem;
    gap: .5rem;
    text-transform: none;
}

.google-btn {
    background-color: #DB4437;
    color: #ffffff;
    border: none;
}

    .google-btn:hover {
        filter: brightness(.95);
    }

    .google-btn::before {
        content: "\f1a0";
        font-family: "Font Awesome 5 Brands";
        margin-right: 8px;
    }

.facebook-btn {
    background-color: #1877F2;
    color: #ffffff;
    border: none;
}

    .facebook-btn:hover {
        filter: brightness(.95);
    }

    .facebook-btn::before {
        content: "\f09a";
        font-family: "Font Awesome 5 Brands";
        margin-right: 8px;
    }

.twitter-btn {
    background-color: #1DA1F2;
    color: #ffffff;
    border: none;
}

    .twitter-btn:hover {
        filter: brightness(.95);
    }

    .twitter-btn::before {
        content: "\f099";
        font-family: "Font Awesome 5 Brands";
        margin-right: 8px;
    }

.linkedin-btn {
    background-color: #0A66C2;
    color: #ffffff;
    border: none;
}

    .linkedin-btn:hover {
        filter: brightness(.95);
    }

    .linkedin-btn::before {
        content: "\f0e1";
        font-family: "Font Awesome 5 Brands";
        margin-right: 8px;
    }

.microsoft-btn {
    background-color: #0078D7;
    color: #ffffff;
    border: none;
}

    .microsoft-btn:hover {
        filter: brightness(.95);
    }

    .microsoft-btn::before {
        content: "\f17a";
        font-family: "Font Awesome 5 Brands";
        margin-right: 8px;
    }

.social-btn i {
    font-size: 1.05rem;
}

/* --- Dashboard layout --- */
.demo-drawer {
    height: 100vh !important;
    min-height: 500px;
}

.card.ch-480 {
    height: 100vh !important;
    min-height: 500px;
    margin: 0;
    border: none;
}

.card-body.p-0.overflow-auto {
    height: calc(100vh - 50px) !important;
}

/* --- Drawer content --- */
.dxbl-drawer-content {
    background-color: white;
    height: 100%;
}

.dxbl-drawer-panel {
    background-color: #f8f9fa;
    height: 100%;
}

/* --- Drawer menu --- */
.demo-drawer-menu,
.demo-drawer-mini-menu {
    background: transparent;
    height: 100%;
    border: none;
}

/* --- Toast fixes --- */
dxbl-toast-portal.dxbl-toast-portal,
.dxbl-toast-portal,
[class*="toast-portal"] {
    position: fixed !important;
    top: 50px !important;
    right: 20px !important;
    z-index: 10000 !important;
}

/* --- Footer fix --- */
footer, .site-footer {
    margin-top: auto; /* Push footer to bottom */
    background: #f8f9fa;
    text-align: center;
    box-shadow: 0px -4px 6px -1px rgba(0,0,0,0.1);
    padding: 1.5rem 1rem;
}

.footer-cells {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0.5rem 1rem 1rem;
}

.footer-links {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    max-height: 50px;
    width: auto;
}

.footer-bottom-text-area {
    margin-top: 10px;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

@media (max-width: 767.98px) {
    .footer-cells {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        gap: 0.75rem;
    }

    .footer-logo {
        max-width: 180px;
    }
}

.site-footer {
    background-color: #f8f9fa;
}

.footer-link {
    transition: color 0.3s ease;
    font-weight: 500;
}

    .footer-link:hover {
        color: #007bff !important;
    }

.social-link {
    transition: transform 0.3s ease;
    display: inline-block;
}

    .social-link:hover {
        transform: translateY(-2px);
    }

@media (max-width: 768px) {
    .site-footer .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .footer-logo {
        max-height: 40px !important;
    }
}

@media (max-width: 576px) {
    .site-footer .container-fluid {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .footer-bottom-text {
        font-size: 0.8rem;
    }
}
.main-content {
    display: flex;
    flex-direction: column;
}

.main-text {
    padding: 2rem 2rem;
    font-size: 50px;
    max-width: 50%;
    text-align: center;
}

.paragraph {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
    line-height: 1.6;
    text-align: justify;
    font-size: 16px;
    color: #333;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    margin-top: 30px;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .paragraph {
        max-width: 90%;
        padding: 15px;
        margin: 20px auto;
        font-size: 14px;
        line-height: 1.5;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .paragraph {
        max-width: 95%;
        padding: 12px;
        margin: 15px auto;
        font-size: 13px;
    }
}
.contact-icon {
    color: #007bff;
    transition: transform 0.3s ease;
}

.contact-item-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-content {
    padding: 2rem;
    border-radius: 0.5rem;
    height: 100%;
}

.d-flex.align-items-start:hover .contact-icon {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .contact-content {
        padding: 1.5rem;
    }

    h1.display-4 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .container-fluid {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .contact-content {
        padding: 1rem;
    }

    h1.display-4 {
        font-size: 2rem;
    }

    .contact-item-text {
        font-size: 1rem;
    }
}
.header-spacer {
    height: 98px;
}

.landing-container {
    width: 100%;
}

.standard-container {
    width: 100%;
}

    .standard-container .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

@media (max-width: 576px) {
    .header-spacer {
        height: 98px;
    }

    .standard-container .container-fluid {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
}
.layout-root {
    min-height: 100vh !important;
}

.flex-fill {
    flex: 1 1 auto !important;
}
.base-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; 
    font-size: 1.25rem; 
    margin-left: 0.5rem;
    color: #000; 
}
