/* Application Specific - START */
* {
    font-family: Segoe UI,Frutiger,Frutiger Linotype,Dejavu Sans,Helvetica Neue,Arial,sans-serif !important;
}



.navbar-brand img {
    height: 75px;
    margin: -10px 0;
}














.admin {
    margin-top: 100px;
    padding: 0 5px;
}










:root {
    --primary-color: #8B4513;
    --secondary-color: #DEB887;
    --accent-color: #556B2F;
    --text-light: #F5F5DC;
    --bg-gradient: linear-gradient(135deg, #DEB887 0%, #8B4513 100%);
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #FAF9F6;
    color: #333;
}

h1, h2, h3, h5 {
    font-family: 'Playfair Display', serif;
}

.hero {
    background-image: url('/images/Banner.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; /* fit and crop nicely */
    min-height: 60vh; /* give the hero a visible height */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

    .hero h1 {
        font-size: 3.8rem;
        font-weight: 700;
    }

.section-padding {
    padding: 90px 0;
}

.card {
    border: none;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-radius: 12px;
}

    .card:hover {
        transform: translateY(-12px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    }

.card-img-top {
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.gallery-img {
    height: 320px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

footer {
    background: var(--primary-color);
    color: white;
    padding: 50px 0;
    font-size: 0.95rem;
}

.btn-custom {
    background: var(--accent-color);
    border: none;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-custom:hover {
        background: #6B8E23;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
/* Testimonials Styling */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin: 15px 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s ease;
}

    .testimonial-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    }

    .testimonial-card::before {
        content: '“';
        font-family: 'Playfair Display', serif;
        font-size: 6rem;
        color: var(--secondary-color);
        position: absolute;
        top: -20px;
        left: 20px;
        opacity: 0.3;
    }

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

    .testimonial-author img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 15px;
        border: 3px solid var(--secondary-color);
    }

.author-info h6 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.author-info small {
    color: #777;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
}

.gallery-img {
    height: 500px; /* Set your desired height */
    object-fit: cover; /* Ensures the image covers the area without distortion */
}


.muted {
    padding-top: 8px;
    color: #666;
    font-style: italic;
}

.w-45 {
    width: 45%;
}

.receipt {
    margin: 0 20px;
}

.not-found-data {
    text-align: center !important;
    margin-bottom: 25px;
}
.not-found-data img {
    max-width: 150px;
}



.file-list {
    list-style: none;
    padding-left: 0;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 35px;
    margin-bottom: 15px;
    position: relative;
}

    .file-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpolyline points='14 2 14 8 20 8'/%3E%3Cline x1='16' y1='13' x2='8' y2='13'/%3E%3Cline x1='16' y1='17' x2='8' y2='17'/%3E%3Cpolyline points='10 9 9 9 8 9'/%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
    }

.file-link {
    text-decoration: none;
    color: #2c3e50;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 12px;
    background: linear-gradient(135deg, #e0eafc, #cfdef3);
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex-grow: 1;
    margin-right: 10px;
}

    .file-link:hover {
        color: #1a73e8;
        background: linear-gradient(135deg, #d1e3fa, #b3cffa);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transform: translateY(-2px);
    }

.delete-btn {
    text-decoration: none;
    color: #dc3545;
    font-size: 20px;
    padding: 8px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

    .delete-btn:hover {
        color: #b02a37;
        transform: scale(1.2);
    }





.btn-check:checked + .btn-outline-success, .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {
    color: #fff;
    background-color: #f28831;
    border-color: #f28831;
}

.btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
    box-shadow: 0 0 0 0.25rem rgb(242 136 49 / 29%) !important;
}

.btn-outline-success {
    color: #f28831;
    border-color: #f28831;
}

    .btn-outline-success:hover {
        color: #fff;
        background-color: #f28831;
        border-color: #f28831;
    }

form {
    margin-top: 15px;
}

.fancy-org-card {
    background: linear-gradient(135deg, #f8fafc 60%, #fff3e0 100% 100% );
    border-radius: 1.25rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

    .fancy-org-card:hover {
        box-shadow: 0 0 32px 0 #a5b4fc;
        transform: translateY(-4px) scale(1.02);
    }

.org-search-bar input {
    border-radius: 2rem;
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
}

.container-sm {
    min-height: calc(100vh - 170px - 225px);
}

#background-cycler {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease;
    pointer-events: none;
}

.topbar, .footer, .container-sm {
    position: relative;
    background: transparent;
}

.form-check {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 37px;
    height: 37px;
    accent-color: #dc6e31;
}

.btn-center {
    max-width: 250px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.actions a {
    margin-bottom: 15px;
    font-variant: small-caps;
    font-size: 32px;
}

.administration {
    position: absolute;
    top: 3px;
    left: 5px;
}

.organization {
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    z-index:1;
}

.table-container {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dropdown {
    margin-bottom: 20px;
}

.table th, .table td {
    vertical-align: middle;
}

.card {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    overflow: visible;
}

.card-header {
    background: white;
    border-bottom: none;
}
.card-title {
    color: #dc6e31 !important;
}

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

.table th, .table td {
    vertical-align: middle;
}



.loginBtn {
    font-size: 1.2em;
    padding: 20px 14px;
    margin: 0 15px 0 0;
    border-radius: 10px;
    text-align: center;
    box-shadow: 8px 8px 12px rgba(16,16,56,.8)
}

a.loginBtn {
    background: #202058;
    color: #fff;
    border: 2px solid #9be9ff;
    transition: .5s
}

    a.loginBtn:hover {
        background: #31376f;
        color: #9be9ff;
        border: 2px solid #a0d1a4;
        text-decoration: none
    }

#mySDicon {
    height: 55px
}

.footer {
    padding-top: 5px;
    border-top: 2px solid #dc6e31;
    position: absolute;
    width: 100%;
    height: 250px;
    margin-left: 0px;
    text-align: center;
    background: white;
}

    .footer .col {
        display: flex;
        flex-direction: column; /* Stack children vertically */
        align-items: center; /* Center horizontally */
        justify-content: center;
        min-height: 80px;
    }

        .footer .col span {
            display: block;
        }
        .footer .col a {
            color: unset;
            text-decoration: unset;
        }

        .footer .col img {
            width: 100%;
            height: 100%;
            object-fit: contain; /* Keeps aspect ratio, fills available space */
            max-height: 100px; /* Adjust as needed for your design */
            padding: 8px; /* Optional: adds spacing inside the column */
            box-sizing: border-box;
        }

.footer-logo-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #dc6e31;
    margin-top: 8px;
    text-align: center;
    font-variant: small-caps;
    letter-spacing: 1px;
}

.footer-logo-phone {
    font-size: 1rem;
    color: #dc6e31;
    margin-top: 2px;
    text-align: center;
    font-family: 'Segoe UI', Arial, sans-serif;
    letter-spacing: 0.5px;
}

.number-hist label {
    font-size: 30px;
    color: #f28831;
    font-variant: small-caps;
    font-weight: lighter;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f28831;
    width: 100%;
}
.number-hist .num {
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: dotted 1px #f28831;
    color: #5a2522;
}

.logout a {
    cursor: pointer;
}

.add {
    padding: 5px 10px 10px 10px;
    border: 1px dashed green;
    border-radius: 10px;
    text-align: center;
    margin-top: 7px;
    margin-bottom: -12px;
}
a.add {
    color: green;
    text-decoration: none;
    font-size: 27px;
    font-weight: lighter;
    vertical-align: middle;
    font-variant: small-caps;
}
    a.add:hover {
        background: #e3f0ea;
    }

.nav-link.selected {
    background-color: rgba(255,255,255,0.1);
    color: white;
    pointer-events: none;
    cursor: default;
}

.mr-1 {
    margin-right: 5px;
}
.ml-1 {
    margin-left: 5px;
}

.display-content {
    display: flex;
}

.payments {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #bdbdbd;
}

.month {
    padding: 10px;
    margin: 10px;
    border: 1px solid #bdbdbd;
    border-radius: 10px;
    font-size: 15px;
}
    .month.totals {
        background-color: #f7efef;
    }
    .month .name {
        font-size: 22px;
        font-weight: lighter;
        border-bottom: 1px solid #d9d9d9;
        margin-bottom: 10px;
        padding-bottom: 5px;
    }
    .month .grand-total {
        font-size: 19px;
        border-top: 1px solid #d9d9d9;
        margin-top: 10px;
        padding-top: 5px;
    }

.btn-outline-success:disabled, .btn-outline-success.disabled {
    color: #f28831;
    background-color: transparent;
}

.container-fluid {
    width: 98% !important;
}

.nav {
    margin-right: 10px;
}

    .nav a {
        margin-bottom: 10px;
    }

.topbar {
    width: 100%;
    padding-bottom: 15px;
    margin-bottom: 25px;
    border-bottom: 5px solid #dc6e31;
    background: white;
}

    .topbar.admin {
        margin-bottom: 0px;
        border-bottom: 1px solid #dc6e31;
        height: 115px;
    }

        .topbar.admin img {
            width: 100px;
            top: 6px;
            position: relative;
            left: 65px;
        }
        .topbar.admin h2 {
            margin-left: 125px;
            width: calc(100% - 265px);
        }

    .topbar img {
        width: 100px;
        top: 6px;
        position: relative;
        left: 65px;
    }

    .topbar h2 {
        text-align: center;
        font-variant: small-caps;
        margin-top: -60px;
        font-size: 35px;
        color: #dc6e31;
        position: absolute;
        top: 115px;
        left: 50%;
        transform: translateX(-50%);
    }

.main-content {
    width: 100%;
}



.title {
    text-align: center;
    font-size: 34px;
    font-weight: lighter;
    margin: 0px 0 25px 0;
}


.personal {
    border: 2px dashed #c6d4ff;
    padding: 15px 0px;
    border-radius: 10px;
    position: relative;
}
.status {
    position: absolute;
    right: 7px;
    top: 0px;
    width: unset;
    font-variant: small-caps;
    font-size: 41px;
    font-weight: lighter;
}
.status.success {
    color: green;
}
    .status.warning {
        color: orange;
    }

    .personal h3 {
        text-align: left;
        font-size: 34px;
        font-weight: lighter;
        margin: 0px 0 5px 0;
        padding: 0px 20px 10px 30px;
    }
        .personal h3 b {
            font-size: 24px;
            font-variant: small-caps;
            top: -10px;
            position: relative;
            color: #003664;
        }

    .personal .info {
        margin-bottom: 10px;
    }

        .personal .info label {
            font-size: 14px;
            font-style: italic;
            margin-bottom: 1px;
        }

        .personal .info span {
            font-size: 20px;
            display: block;
            padding-left: 5px;
        }

.renew {
    background-color: rgb(0 255 43 / 39%);
    color: white;
}


.form-check.yesno {
    display: inline-block;
    margin-right: 25px;
    font-size: 26px;
}

.questions .question {
    font-size: 21px;
    font-weight: lighter;
}

.detail {
    font-size: 21px;
    font-weight: lighter;
}

.cur-user {
    position: absolute;
    top: 3px;
    right: 8px;
}
    .cur-user a {
        text-decoration: none;
    }
    .cur-user .btn-logout {
        position: absolute;
        bottom: -20px;
        right: 0px;
        color: red;
        text-decoration: none;
        cursor: pointer;
    }

/* Application Specific - END */























/* System Specific - START */

.not-found {
    text-align: center;
    margin-top: 75px;
}

    .not-found img {
        width: 20%;
        margin-left: 40%;
        margin-right: 40%;
    }

    .not-found p {
        font-size: 33px;
        font-weight: lighter;
        margin-top: 25px;
        color: #6d6daa;
        font-variant-caps: petite-caps;
    }

.app-date {
    position: absolute;
    bottom: 15px;
    left: 13px;
    color: white;
}


.tooltip-wrapper {
    position: relative;
    display: inline-block;
}

    .tooltip-wrapper span {
        visibility: hidden;
        position: absolute;
        width: 250px;
        bottom: 120%;
        left: -250%;
        background-color: #363636;
        color: #fff;
        text-align: center;
        padding: 10px;
        border-radius: 6px;
        z-index: 1;
        font-size: 15px;
    }

        .tooltip-wrapper span::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #555 transparent transparent transparent;
        }

    .tooltip-wrapper:hover span {
        visibility: visible;
    }








/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.top-row {
    height: 65px;
    display: flex;
    align-items: center;
    padding-left: 15px;
}

.main {
    flex: 1;
}

    .main .top-row {
        background-color: #f7f7f7;
        border-bottom: 1px solid #d6d5d5;
        justify-content: flex-end;
    }

        .main .top-row > a, .main .top-row .btn-link {
            white-space: nowrap;
            margin-left: 1.5rem;
        }

        .main .top-row a:first-child {
            overflow: hidden;
            text-overflow: ellipsis;
        }


app {

}

.sidebar {
    background-image: linear-gradient(360deg, rgb(157 78 40) 0%, #dc6e31 70%) !important;
}

    .sidebar .who {
        font-size: 18px;
        letter-spacing: normal;
        color: white;
        position: absolute;
        bottom: -11px;
        left: 0px;
        width: 246px;
        text-align: center;
        opacity: 0.5;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.nav-link .far, .nav-link .fa, .nav-link .fas {
    margin-right: 15px !important;
    width: 40px;
    text-align: center;
    margin-left: -10px;
}

.sidebar .logout .far {
    margin-right: 20px !important;
}

.sidebar .login .far {
    margin-right: 25px !important;
}

.sidebar .top-row {
    background-color: rgba(0,0,0,0.4);
}

.sidebar .navbar-brand {
    margin-top: -20px;
    font-size: 24px;
}

.sidebar .navbar i {
    color: white;
    position: absolute;
    top: 7px;
    left: 55px;
    font-style: normal;
    opacity: .5;
    font-size: 31px;
    font-weight: lighter;
    letter-spacing: 5px;
}

.sidebar .oi {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.sidebar .nav-item {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .sidebar .nav-item.login {
        font-size: 24px;
        font-weight: lighter;
        font-variant-caps: all-small-caps;
        letter-spacing: 5px;
        width: 100%;
    }

    .sidebar .nav-item.logout {
        position: absolute;
        bottom: 25px;
        left: 0px;
        font-size: 24px;
        font-weight: lighter;
        font-variant-caps: all-small-caps;
        letter-spacing: 5px;
        width: 100%;
    }

    .sidebar .nav-item:first-of-type {
        padding-top: 1rem;
    }

    .sidebar .nav-item:last-of-type {
        padding-bottom: 1rem;
    }

    .sidebar .nav-item a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 16px;
        padding: 25px 15px 25px 15px;
        font-size: 19px;
    }

        .sidebar .nav-item a.active {
            background-color: rgba(255,255,255,0.25);
            color: white;
        }

        .sidebar .nav-item a:hover {
            background-color: rgba(255,255,255,0.1);
            color: white;
        }


.navbar-toggler {
    background-color: rgba(255, 255, 255, 0.1);
}
/*
.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}*/

.validation-message {
    color: red;
}

#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;
    }









.logo-app {
    text-align: center;
    margin-top: 5%;
}

    .logo-app img {
        max-width: 96%;
    }

.login {
    text-align: center !important;
    font-size: 27px !important;
    font-weight: lighter !important;
}

    .login input {
        text-align: center !important;
        font-size: 27px !important;
        font-weight: lighter !important;
    }

    .login button {
        font-size: 27px;
        width: 50%;
        margin: 30px auto 0 auto;
    }


    .login .col {
        max-width: 400px !important;
    }







/* Loading Spinner */
.loading {
    position: fixed;
    z-index: 999;
    overflow: visible;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: white;
    text-align: center;
    padding-top: 7%;
    margin-left: 0px;
    padding-right: 0px;
    -moz-animation-name: fadeIn;
    -webkit-animation-name: fadeIn;
    -ms-animation-name: fadeIn;
    animation-name: fadeIn;
    -moz-animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    -ms-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -moz-animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    -ms-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -moz-animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
    .loading.fadeOut {
        -moz-animation-name: fadeOut;
        -webkit-animation-name: fadeOut;
        -ms-animation-name: fadeOut;
        animation-name: fadeOut;
    }

    .loading img {
        width: 20%;
    }

    .loading h1 {
        color: #385b88;
        font-weight: lighter;
        font-size: 59px;
        font-variant-caps: all-small-caps;
        letter-spacing: 13px;
    }

.text-right {
    text-align: right;
}

/* System Specific - END */












/* Grid */
.grid {
    padding: 0px 0px 20px 20px;
    border: 2px dashed #f28831;
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
}

    .grid h3 {
        text-align: left;
        font-size: 34px;
        font-weight: lighter;
        margin: 0px 0 25px 0;
    }

.row.headers {
    border-bottom: 2px dashed #f28831;
    padding-bottom: 5px;
    margin-bottom: 10px;
    margin-top: 10px;
    font-variant-caps: small-caps;
    font-size: 21px;
    color: #dc6e31;
}

.row.data {
    line-height: 30px !important;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 16.5px;
    font-weight: lighter;
}

.row.headers a {
    cursor: pointer;
}


/* Filter */
.filter-button {
    display: none;
}

label.filter-input {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin: unset;
    height: 20px !important;
    text-overflow: unset !important;
    overflow: unset !important;
}

    label.filter-input img {
        width: 18px;
        position: absolute;
        top: 5px;
        left: -20px;
    }

    label.filter-input span {
        visibility: hidden;
        position: absolute;
        width: 198px;
        top: -52px;
        left: -50px;
        margin-left: -60px;
        background-color: #363636;
        color: #fff;
        text-align: center;
        padding: 10px;
        border-radius: 6px;
        z-index: 1;
        font-size: 15px;
    }

        label.filter-input span::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #555 transparent transparent transparent;
        }


.filter-button:checked + label.filter-input span {
    visibility: visible;
}




.my-orgs-card {
    background: rgba(255,255,255,0.95);
    border-radius: 1.25rem;
    border: none;
}

.org-action-card {
    width: 320px;
    transition: transform 0.15s, box-shadow 0.15s;
    background: linear-gradient(135deg, #fff7f0 60%, #ffe5d0 100%);
    border-radius: 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    text-decoration: none;
}

    .org-action-card:hover {
        transform: translateY(-6px) scale(1.03);
        box-shadow: 0 6px 24px rgba(0,0,0,0.13);
        background: linear-gradient(135deg, #ffe5d0 60%, #fff7f0 100%);
    }

.org-action-icon {
    font-size: 2.5rem;
    color: #dc6e31;
}

.org-action-card .btn-outline-success {
    border-color: #dc6e31;
    color: #dc6e31;
}

    .org-action-card .btn-outline-success:hover {
        background: #dc6e31;
        color: #fff;
    }

.org-action-card .btn-outline-primary {
    border-color: #dc6e31;
    color: #dc6e31;
    background: transparent;
}

.org-action-card .btn-outline-primary:hover {
    background: #dc6e31;
    color: #fff;
}





/* Pagination */
.pagination-container {
    width: 100%;
    text-align: center;
    font-size: 20px;
    margin: 20px 0px 15px 0;
    position: relative;
}
    .pagination-container a {
        color: #f28831;
        padding: 5px;
        border-radius: 5px;
        cursor: pointer;
        border: 1px solid transparent;
    }
        .pagination-container a:hover {
            border: 1px solid #f28831;
        }
    .pagination-container .current-page {
        text-decoration: underline;
        margin: 0 10px;
        color: #f28831;
    }
    .pagination-container .page {
        margin: 0 10px;
    }
    .pagination-container .page-size {
        text-align: right;
        width: 220px;
        font-size: 16px;
        float: right;
        position: absolute;
        right: 0px;
    }
        .pagination-container .page-size input {
            width: 75px;
            display: inline;
            margin-left: 5px;
        }







/* Overrides - START */

.position-topleft {
    top: 0px !important;
    left: 0px !important;
}

.btn-success {
    color: #fff;
    background-color: #f28831;
    border-color: #d26c19;
}
    .btn-success:hover {
        color: #fff;
        background-color: #d26c19;
        border-color: #f28831;
    }
    .btn-success:active {
        color: #fff;
        background-color: #d26c19;
        border-color: #f28831;
    }
    .btn-success:focus {
        color: #fff;
        background-color: #d26c19;
        border-color: #f28831;
        box-shadow: 0 0 0 0.25rem rgb(160 81 78 / 27%);
    }
    .btn-success:disabled, .btn-success.disabled {
        color: #fff;
        background-color: #f28831;
        border-color: #d26c19;
    }



.blazored-toast-container {
    z-index: 105 !important;
}
.blazored-toast-container {
    width: 100%;
    text-align: center;
}
.blazored-toast {
    width: 100% !important;
    min-height: 115px !important;
}

.blazored-toast-body .blazored-toast-header h5 {
    width: 100%;
}

.blazored-toast .blazored-toast-message {
    font-size: 25px !important;
    font-weight: lighter !important;
    margin: auto !important;
}

.position-topright {
    top: 0px;
    right: 0px;
}

/* Overrides - END */



/* Responsive */





@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 1;
        visibility: visible;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 1;
        visibility: visible;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 1;
        visibility: visible;
    }
}

@-keyframes fadeIn {
    0% {
        opacity: 0;
        visibility: hidden;
    }

    100% {
        opacity: 1;
        visibility: visible;
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity: 1;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@-ms-keyframes fadeOut {
    0% {
        opacity: 1;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@-keyframes fadeOut {
    0% {
        opacity: 1;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.star-rating .star {
 margin-right:4px;
 transition: transform0.1s;
}
.star-rating .star:hover {
 transform: scale(1.2);
}
.star-rating .bi-star,
.star-rating .bi-star-fill {
 font-size:1.7rem;
 vertical-align: middle;
}