﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
    color: #0366d6;
    text-decoration: none;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.print-only {
    display: none;
}

.hero-section {
    background: linear-gradient(to right, #fff 30%, rgba(255,255,255,0) 100%), url('/image/hero_building.png') no-repeat center center / cover;
}

@media (min-width: 1400px) {
    .hero-section {
        min-height: 45vh;
        background-size: cover;
    }
}

@media (min-width: 1600px) {
    .hero-section {
        min-height: 35vh;
        background-size: cover;
    }
}

@media print {
    /* When printing, make the print-only content visible */
    .print-only {
        display: table-cell;

    }

    /* Optionally, adjust other table and layout properties during printing */
    .table {
        width: 100%;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .table td {
        padding: 8px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
}

/*body {*/
/* Margin bottom by footer height */
/*}*/
body {
    background-color: rgba(248,248,248,1);
}

/*.footer {
    position: relative;
    bottom: 0px;
    width: 100%;
    white-space: nowrap;
    line-height: 60px;
}*/

.bg-black {
    background-color: black !important;
}

.card {
    background-color: #fff !important;
    border-radius: 1em;
    border: 1px solid #007bff77;
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .1);
    margin-bottom: 2em;
}

h6 {
    font-weight: bold;
}

h4, h5, h3 {
    font-weight: normal !important;
}

.card-footer {
    font-size: .9em;
}

form .card-footer {
    text-align: end;
}

.btn {
    border-radius: .5em;
}

.nav-link {
    padding-right: 1.25em !important;
    padding-left: 1.25em !important;
    margin: 0px 1px;
}

.nav-item.active {
    background-color: #1c184bff;
    border-radius: .375em !important;
}

    .nav-item.active .nav-link {
        color: white;
    }

.nav-item {
    /*   padding: 0em .7em;*/
    margin: 0 2px;
    text-overflow: ellipsis;
    overflow: hidden;
    text-wrap: none;
    white-space: nowrap;
    text-align: center;
}

.navbar-brand {
    text-overflow: ellipsis;
    overflow: hidden;
    text-wrap: none;
    white-space: nowrap;
    text-align: left !important;
}

.text-ellipsized {
    text-overflow: ellipsis;
    overflow: hidden;
    text-wrap: none;
    white-space: nowrap;
}

.sidebar-action-item {
    padding: .5rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

    .sidebar-action-item svg {
        color: #007bff !important;
        width: 24px !important;
    }

    .sidebar-action-item + .active svg {
        color: #fff !important;
        width: 24px !important;
    }

.text-super {
    vertical-align: super;
}

.error {
    color: red;
    font-size: small;
}

.text-strike-through {
    text-decoration: line-through;
}

hr {
    margin: .65em 0;
}

.break {
    border-bottom: 1px solid #ddd;
    margin: 1em 0em;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    height: 10px;
}

.active > i, .active > svg {
    color: white !important;
}

.icon-color {
    color: #0d6efd;
    margin-right: 8px;
}

.icon-color-updated {
    color: #05C182;
}

.card-default {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #eceded;
    border-radius: 0.25rem;
    padding: 0.5rem;
    height: 12rem;
}

.card-heading {
    font-weight: 600;
    font-size: 16px;
}

.card-small {
    padding: 0.25rem;
}

.card-default-sm {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #eceded;
    border-radius: 0.25rem;
    padding: 0.5rem;
    height: 6rem;
}

.tenants-icon-size {
    font-size: 25px;
}

/* progress bar */
.custom-progress-bar {
    counter-reset: step;
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
}

    .custom-progress-bar li {
        color: #999;
        font-size: 12px;
        text-transform: uppercase;
        flex: 1;
        position: relative;
        text-align: center;
    }

        .custom-progress-bar li:before {
            content: counter(step);
            counter-increment: step;
            width: 24px;
            height: 24px;
            line-height: 26px;
            display: block;
            font-size: 12px;
            color: #333;
            background: #fff;
            border: 1px solid #ccc;
            border-radius: 50%;
            margin: 0 auto 5px auto;
            position: relative;
            z-index: 1;
        }

        .custom-progress-bar li.active {
            color: #2C3E50;
        }

            .custom-progress-bar li.active:before {
                background: #1C184B;
                color: #fff;
                border-color: #1C184B;
            }

.avatar-container {
    position: relative;
    width: 150px;
    height: 150px;
    overflow: hidden;
}

    .avatar-container img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

.custom-border {
    border: 1px dotted blue; /* Set border style and color */
}

.login-container {
    background-color: transparent;
    border: 3px solid #ccc;
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    margin: 100px auto;
    /* box-shadow: 0 0 900px 300px #1C184B;*/
}

    .login-container img {
        width: 100px;
        margin: 0 auto 32px;
        display: block;
    }

.login-form input[type="text"],
.login-form input[type="password"] {
    border-radius: 24px;
}

.login-form button {
    width: 100%;
    border-radius: 24px;
}

.forgot-password {
    text-align: right;
    margin-top: 10px;
    color: white;
    text-decoration: none;
}

    .forgot-password a {
        color: white;
        text-decoration: none;
    }

.create-account {
    text-align: center;
    margin-top: 20px;
}
/*Corousel CSS Tint */

.carousel-inner .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Adjust the alpha value to control the tint darkness */
}

.carousel-inner .carousel-item img {
    height: 300px; /* Adjust the height as per your preference */
    max-height: 100%; /* Maintain aspect ratio */
    object-fit: cover; /* Scale the image while maintaining aspect ratio */
}
/*End Corousel CSS Tint ****************************************************************************************************/
.container-login {
    background-color: transparent;
    border: 1px solid #ccc;
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    margin-top: 50px;
    /*    margin-top:5px;*/
}

.parallax {
    background-image: url('/image/modern-country-houses-construction_1385-20.jpg');
    min-height: 150px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.service-container {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    max-width: 350px;
    background-color: white;
}

/* Styles for the skills list */
.skillsList {
    font-size: 14px;
    margin-left: 0;
    /* Add this line to remove the left padding */
}

@media screen and (max-width: 20px) {
    .skillsList {
        font-size: 16px;
    }
}

.required::after {
    content: "*";
    color: #dc3545;
}
/* Add more styles here based on your requirements */
/*Skill List CSS*/

#topSkills {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none; /* Remove default list bullets */
}

    #topSkills li {
        font-size: 13px;
        font-size: 0.8125em;
        display: inline-block;
        color: #666;
        border: 1px solid #eee;
        border-radius: 3px;
        padding: 4px 12px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: 160px;
        background: #0d6efd0f;
    }

        /* Example style for active skill */
        #topSkills li.skillsList__skill--active {
            color: #fff;
            background-color: #4c83c3;
        }

        /* Example style for selected skill */
        #topSkills li.skillsList__skill--selected {
            background: #3e76b8;
            color: white;
            pointer-events: none;
        }

.review-rating {
    color: #FFC978;
    font-size: 20px;
}

.custom-thumbnail {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
}

#header {
    position: absolute;
    z-index: 1000;
    top: 200px;
    left: 200px;
}



.fa-plus-square {
    color: #198754;
    margin-right: 5px;
}

.sidelinks {
    text-decoration: none;
    color: black;
}

    .sidelinks:hover {
        color: #2c2c2c;
    }

/*****User Profile image CSS******/

.profile-pic {
    display: inline-block;
}

.profile-description {
    margin-left: 20px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1.5em;
}

.profile-name {
    font-weight: 500;
    font-size: 1.5rem;
}

.profile-userpic img {
    float: none;
    margin: 0 auto;
    height: 96px;
    width: 96px;
    object-fit: cover;
    -webkit-border-radius: 96px !important;
    -moz-border-radius: 96px !important;
    border-radius: 96px !important;
}

/*Right sidebar*/
#rightsidebar {
    display: block;
    min-height: 100vh;
}

.profile-sidebar {
    padding: 20px 0 10px 0;
    background: #fff;
}

.money-col {
    text-align: right;
}

.profile-userpic img {
    float: none;
    margin: 0 auto;
    width: 50%;
    height: 50%;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    border-radius: 50% !important;
}

.profile-usertitle {
    text-align: center;
    margin-top: 20px;
}

.profile-usertitle-name {
    color: #5a7391;
    font-weight: 600;
}

.profile-usertitle-job {
    text-transform: uppercase;
    color: #5b9bd1;
    font-weight: 600;
}

.profile-usertitle-job-balance {
    text-transform: uppercase;
    color: #5B5B5B;
    font-size: small;
    font-weight: 600;
    display: block;
}

.profile-userbuttons {
    text-align: center;
    margin-top: 10px;
}

    .profile-userbuttons .btn {
        text-transform: uppercase;
        font-size: 11px;
        font-weight: 600;
        padding: 6px 15px;
        margin-right: 5px;
    }

        .profile-userbuttons .btn:last-child {
            margin-right: 0px;
        }

.profile-usermenu {
    margin-top: 0px;
}

    .profile-usermenu ul li {
        border-bottom: 1px solid #f0f4f7;
    }

        .profile-usermenu ul li:last-child {
            border-bottom: none;
        }

        .profile-usermenu ul li a {
            color: #93a3b5;
            font-size: 14px;
            font-weight: 400;
        }

            .profile-usermenu ul li a i {
                margin-right: 8px;
                font-size: 14px;
            }

            .profile-usermenu ul li a:hover {
                background-color: #fafcfd;
                color: #5b9bd1;
                text-decoration: none;
            }

        .profile-usermenu ul li.active {
            border-bottom: none;
        }

            .profile-usermenu ul li.active a {
                color: #5b9bd1;
                background-color: #f6f9fb;
                border-left: 2px solid #5b9bd1;
                margin-left: -2px;
            }

.list-group {
    --bs-list-group-border-color: rgba(0, 0, 0, 0) !important;
}

.badgeprofile {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}

/*Rating CSS*/
.rating {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #FFC978;
}

.user {
    margin: 0px 0px 0px 0px;
}

.rating > span {
    display: inline-block;
    position: relative;
    width: 32px;
    /* Set width to 32px */
    height: 32px;
    /* Set height to 32px */
    font-size: 32px;
    /* Set font size to control star size */
}

.review-rating {
    color: #FFC978;
}

/*End Rating CSS****************************************************************************************************/
/*Corousel CSS Tint */
.carousel-inner .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 2)) /* Adjust the alpha value to control the tint darkness */
}

.bg-none::before {
    background: none !important;
}
/* Remove tint for this specific carousel */
#carouselExampleIndicators2 .carousel-inner .carousel-item::before {
    background: none;
}

.carousel-inner .carousel-item img {
    max-height: 100%; /* Maintain aspect ratio */
    object-fit: cover; /* Scale the image while maintaining aspect ratio */
}
/*End Corousel CSS Tint ****************************************************************************************************/

/*Text on top of image*/

.image-container {
    position: relative;
    display: inline-block;
}



.image-text h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.image-text p {
    font-size: 16px;
    margin-bottom: 20px;
}

.image-text a {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

/*End Text on top of image ****************************************************************************************************/

.field-validation-error {
    color: #dc3545;
    font-size: smaller;
}


table a {
    text-decoration: none;
}

.action-bar a {
    margin-left: 4px;
}

.form-group {
    margin-top: 1rem;
}

.img-sm {
    height: 70px;
    width: 70px;
    object-fit: cover;
}

.details-form label {
    color: #6c757d;
}

.details-form svg {
    color: #0d6efd;
}

.details-form .row {
    margin-top: 1rem;
}

.card-body .row {
    margin-top: 1rem !important;
}

    .card-body .row:first-of-type {
        margin-top: 0em !important;
    }

.card-body label {
    color: #6c757d;
    margin-bottom: 0;
}

.bg-nav {
    background: #1c184bfa;
}

.start-80 {
    left: 80% !important;
}

.start-90 {
    left: 90% !important;
}

.truncate-2-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-grayed {
    color: #a0aab4;
}

.border-light-blue {
    border-color: #007bff77 !important;
}


/*
  PropertyQuest UI – Consolidated Styles
  ------------------------------------------------------------------
  Purpose: Shared styles for Tenant/Property widgets, Occupancy visuals,
           chips, and layout helpers used across details pages.
  Notes:
  - Built to layer on top of Bootstrap 5 and Font Awesome.
  - Class names mirror the snippets you've integrated to minimize refactors.
  - Color tokens and radii are customizable via CSS variables.
*/

:root {
    /* Brand tokens (tweak to match your theme) */
    --pq-primary: #0d6efd; /* Bootstrap primary */
    --pq-success: #198754; /* Bootstrap success */
    --pq-warning: #ffc107; /* Bootstrap warning */
    --pq-danger: #dc3545; /* Bootstrap danger */
    --pq-info: #0dcaf0; /* Bootstrap info */
    --pq-muted: #6c757d; /* Bootstrap secondary text */

    --pq-card-bg: #fff;
    --pq-card-border: #dee2e6;
    --pq-soft-border: #e9ecef;
    --pq-soft-bg: #f8f9fa;
    --pq-radius-lg: .75rem;
    --pq-radius-pill: 999px;
    --pq-shadow-sm: 0 .125rem .5rem rgba(0,0,0,.06);
    --pq-inset-soft: 0 .25rem .5rem rgba(0,0,0,.04) inset;
}

/* ------------------------------------------------------------------
   Utilities & helpers
------------------------------------------------------------------- */
.text-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.icon-muted {
    color: var(--pq-muted) !important;
}

.icon-primary {
    color: var(--pq-primary) !important;
}

.icon-success {
    color: var(--pq-success) !important;
}

.icon-warning {
    color: var(--pq-warning) !important;
}

.icon-danger {
    color: var(--pq-danger) !important;
}

.icon-info {
    color: var(--pq-info) !important;
}

/* Optional lift on hover for cards */
.pq-hover-lift {
    transition: transform .15s ease, box-shadow .15s ease;
}

    .pq-hover-lift:hover {
        transform: translateY(-2px);
        box-shadow: 0 .25rem 1rem rgba(0,0,0,.08);
    }

/* ------------------------------------------------------------------
   Chips (compact meta badges)
------------------------------------------------------------------- */
.chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    padding: .3rem .6rem;
    border-radius: var(--pq-radius-pill);
    background: var(--pq-soft-bg);
    border: 1px solid var(--pq-soft-border);
    white-space: nowrap;
}

.chip--soft {
    background: #fff;
    border-color: var(--pq-soft-border);
}

.chip .sw {
    width: .55rem;
    height: .55rem;
    border-radius: 50%;
    background: currentColor;
    display: inline-block;
}

/* ------------------------------------------------------------------
   Tenant widget
------------------------------------------------------------------- */
.tenant-card {
    border: 1px solid var(--pq-card-border);
    border-radius: var(--pq-radius-lg);
    background-color: var(--pq-card-bg);
    padding: 1rem;
    height: 100%;
    overflow: hidden;
    box-shadow: var(--pq-shadow-sm);
}

.tenant-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e3f2fd, #e8eaf6);
    color: var(--pq-primary);
    font-weight: 700;
    display: grid;
    place-items: center;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 0.25rem 0.5rem rgba(13,110,253,0.1);
}

.tenant-name-link {
    text-decoration: none;
    color: var(--pq-primary);
    font-weight: 600;
}

    .tenant-name-link:hover {
        text-decoration: underline;
    }

/* ------------------------------------------------------------------
   Property widget
------------------------------------------------------------------- */
.property-card {
    border: 1px solid var(--pq-card-border);
    border-radius: var(--pq-radius-lg);
    background-color: var(--pq-card-bg);
    padding: 1rem;
    height: 100%;
    overflow: hidden;
    box-shadow: var(--pq-shadow-sm);
}

.property-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f5e9, #e3f2fd);
    color: var(--pq-success);
    font-weight: 700;
    display: grid;
    place-items: center;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 0.25rem 0.5rem rgba(25,135,84,0.15);
}

.property-link {
    text-decoration: none;
    color: var(--pq-success);
    font-weight: 600;
}

    .property-link:hover {
        text-decoration: underline;
    }

/* ------------------------------------------------------------------
   Occupancy visuals (donut gauge + capacity bar)
------------------------------------------------------------------- */
.gauge {
    --val: 0; /* 0..100 */
    --col: var(--pq-success);
    width: 144px;
    height: 144px;
    border-radius: 50%;
    background: radial-gradient(closest-side, #fff 72%, transparent 73% 100%), conic-gradient(var(--col) calc(var(--val) * 1%), #e9ecef 0);
    display: grid;
    place-items: center;
    box-shadow: var(--pq-shadow-sm);
}

    .gauge .value {
        font-weight: 700;
        font-size: 1.25rem;
        line-height: 1;
    }

    .gauge .label {
        font-size: .75rem;
        color: var(--pq-muted);
        margin-top: .15rem;
    }

.capacity-bar {
    height: .75rem;
    border-radius: var(--pq-radius-pill);
    background-color: #e9ecef;
    overflow: hidden;
}

    .capacity-bar .used {
        height: 100%;
        background-color: var(--bar-col, var(--pq-success));
        transition: width .3s ease;
    }

/* ------------------------------------------------------------------
   Meta grid (header chips section)
------------------------------------------------------------------- */
.meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: .75rem;
}

@media (max-width: 991.98px) {
    .meta-grid {
        grid-template-columns: 1fr;
    }
}

/* ------------------------------------------------------------------
   Tables – light polish (keeps Bootstrap semantics)
------------------------------------------------------------------- */
.table thead.table-light th {
    font-weight: 600;
}

.table tfoot th {
    font-weight: 600;
}

.text-ellipsized {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ------------------------------------------------------------------
   Sticky gallery (used on property details sidebar)
------------------------------------------------------------------- */
.pq-gallery .thumb {
    height: 64px;
    width: 96px;
    object-fit: cover;
    cursor: pointer;
}

.pq-gallery .hero {
    width: 100%;
    border-radius: .5rem;
    object-fit: cover;
}

/* ------------------------------------------------------------------
   Tabs container styling for content blocks
------------------------------------------------------------------- */
.pq-tabcontent {
    border-left: 1px solid var(--pq-soft-border);
    border-right: 1px solid var(--pq-soft-border);
    border-bottom: 1px solid var(--pq-soft-border);
    padding: 1rem;
    border-bottom-left-radius: .5rem;
    border-bottom-right-radius: .5rem;
    box-shadow: var(--pq-shadow-sm);
}

/* ------------------------------------------------------------------
   Alerts & banners tweaks
------------------------------------------------------------------- */
.alert.shadow-sm {
    box-shadow: var(--pq-shadow-sm) !important;
}

/* ------------------------------------------------------------------
   Spacing helpers (optional)
------------------------------------------------------------------- */
.pq-gap-2 {
    gap: .5rem;
}

.pq-gap-3 {
    gap: 1rem;
}
.pq-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #e9ecef;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    flex-grow: 0;
    flex: 0 0 48px; /* prevents squashing (oval issue) */
}

.pq-hover-lift {
    transition: transform .15s ease, box-shadow .15s ease;
}

    .pq-hover-lift:hover {
        transform: translateY(-2px);
        box-shadow: 0 .25rem 1rem rgba(0,0,0,.08);
    }

/* Visual states for KPIs */
.pq-card {
    border: 0;
    border-radius: .65rem;
    background: #fff;
    box-shadow: 0 .125rem .75rem rgba(0,0,0,.06);
    transition: transform .15s ease, box-shadow .15s ease;
}

    .pq-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 .25rem 1rem rgba(0,0,0,.08);
    }
    .pq-card .card-body {
        padding: 1rem 1.25rem;
    }

.pq-card-muted {
    opacity: 0.5;
    filter: grayscale(0.3);
    transition: opacity .2s ease, transform .2s ease;
}

    .pq-card-muted:hover {
        opacity: 0.7;
        transform: translateY(-2px);
    }

.pq-card-active {
    opacity: 1;
    filter: none;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafc 100%);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .pq-card-active:hover {
        transform: translateY(-3px);
        box-shadow: 0 .25rem 1rem rgba(0,0,0,.08);
    }