:root {
    --theme-primary-color: #FF7F00;
    --border-color: #D3D9E5;
    --card-r: 6px;
    --pane-r: 28px;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    color: #757575;
    background-color: #F5F5F5;
}

a {
    text-decoration: none;
    color: var(--theme-primary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #121317;
}

[data-svg-icon] {
    line-height: 0;
}

.btn {
    height: 47px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
}

.btn-theme {
    background: var(--theme-primary-color) !important;
    color: #fff;
    border-color: var(--theme-primary-color) !important;
}

.btn-theme:hover {
    background: #BB6006 !important;
    color: #fff;
    border-color: #BB6006 !important;
}

.btn-secondary {
    background: #999897 !important;
    color: #fff;
    border-color: #999897 !important;
}

.btn-secondary:hover {
    background: #7a7a79 !important;
    color: #fff;
    border-color: #7a7a79 !important;
}

.text-theme {
    color: var(--theme-primary-color) !important;
}

.btn-theme:disabled {
    background: #909090;
    color: #fff;
}

.form-label {
    font-weight: 700;
    line-height: 16px;
    color: #121317;
}

.form-control,
.form-select {
    height: 47px;
    border-radius: 8px;
    border: 1px solid #D3D9E5;
    font-size: 12px;
    line-height: 18px;
}

.form-control::placeholder {
    color: #A6ADBC;
}

.error-message {
    font-size: 10px;
}

.unit-select {
    max-width: 80px;
}

.password-input {
    position: relative;
}

.password-input input[type="password"] {
    padding-right: 35px !important;
}

.password-input input[type="password"].is-invalid {
    padding-right: 50px !important;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 11px;
    cursor: pointer;
}

.invalid-feedback+.toggle-password {
    right: 30px;
}

/* Custom Select2 Bootstrap 5 styling fixes */
.select2-container--bootstrap-5 .select2-selection {
    border-color: var(--border-color);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-size: 12px;
    line-height: 18px;
}

.select2-container--bootstrap-5 .select2-selection--single {
    height: 47px !important;
    padding: 14px 12px;
}

.select2-container--bootstrap-5 .select2-selection--multiple {
    min-height: 47px;
    padding: 14px 12px;
}

.select2-container--bootstrap-5 .select2-selection__rendered {
    padding-left: 0;
    padding-right: 0;
    height: auto;
    line-height: 1.5;
    font-size: 12px;
}

.select2-container--bootstrap-5 .select2-selection__arrow {
    height: 47px;
    right: 0.75rem;
}

/* Focus state to match form controls */
.select2-container--bootstrap-5.select2-container--focus .select2-selection {
    border-color: var(--theme-primary-color);
    box-shadow: 0 0 0 2px rgba(255, 127, 0, 0.3);
    outline: none;
}

/* Dropdown styling */
.select2-container--bootstrap-5 .select2-dropdown {
    border-color: var(--border-color);
    border-radius: 8px;
    font-size: 12px;
}

/* Option styling */
.select2-container--bootstrap-5 .select2-results__option--highlighted {
    background-color: #EAEAEABF !important;
    color: #000 !important;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option {
    font-size: unset;
}

.select2-container--bootstrap-5 .select2-results__option--selected {
    background-color: var(--theme-primary-color) !important;
    color: #fff !important;
}

/* Placeholder styling */
.select2-container--bootstrap-5 .select2-selection__placeholder {
    color: #A6ADBC;
}

/* Input group compatibility */
.input-group .select2-container {
    flex: 1 1 auto;
    width: 1%;
}

.input-group .select2-container .select2-selection {
    /* border-radius: 0; */
}

.input-group .select2-container:not(:first-child) .select2-selection {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group select:first-child+.select2-container .select2-selection {
    border-top-left-radius: 8px !important;
    border-bottom-left-radius: 8px !important;
}

.input-group .select2-container:not(:last-child) .select2-selection {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.input-group .select2-container:first-child .select2-selection {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.input-group .select2-container:last-child .select2-selection {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Custom Select2 Bootstrap 5 styling fixes ended */



/* Custom file upload inputs */

.custom-file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0.1px;
    height: 0.1px;
    z-index: -1;
}

.file-upload-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    text-decoration: none;
}

.file-upload-btn:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
    color: #495057;
}

.file-upload-btn.file-selected {
    background-color: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.file-upload-btn .file-text {
    font-weight: 500;
}

.custom-file-upload input[type="file"]:focus+.file-upload-btn {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

.custom-file-upload input[type="file"]:disabled+.file-upload-btn {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Custom file upload inputs ended */



/* loader css */
#loader {
    display: flex;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
    align-items: center;
    background: #000000ed;
    z-index: 9999999;
    top: 0;
    left: 0;
}

/* .sk-cube-grid {
    width: 60px;
    height: 60px;
    margin: 100px auto;
}

.sk-cube-grid .sk-cube {
    width: 33%;
    height: 33%;
    background-color: #fff;
    float: left;
    -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
    animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.sk-cube-grid .sk-cube1 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube2 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube3 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.sk-cube-grid .sk-cube4 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube5 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube6 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube7 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.sk-cube-grid .sk-cube8 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube9 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

@-webkit-keyframes sk-cubeGridScaleDelay {

    0%,
    70%,
    100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }

    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}

@keyframes sk-cubeGridScaleDelay {

    0%,
    70%,
    100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }

    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}
 */
/* loader css */

.webite-header {
    background-image: url("../header-background.svg");
    background-color: #000;
    height: 200px;
    border-bottom-right-radius: 92.5px;
    border-bottom-left-radius: 92.5px;
    background-repeat: no-repeat;
    background-position: 0 calc(100% + 3px);
    background-size: 370px;
}

.webite-header .logo-normal {
    filter: invert(100%);
    /* margin-top: 25px; */
    margin-left: 20px;
    height: 62px;
}

#mainNavbarNav .add-property-btn {
    height: 40px;
    border-radius: 6px;
    padding: 10px !important;
    background: var(--theme-primary-color);
    line-height: 19px;
}

#mainNavbarNav .name-initals {
    width: 40px;
    height: 40px;
    display: inline-block;
    border: 1px solid #fff;
    border-radius: 50%;
    padding: 7px 0;
    text-align: center;
    font-size: 16px;
    vertical-align: middle;
}

#mainNavbarNav .add-property-btn:hover {
    background: #BB6006;
    color: #fff;
}

#mainNavbarNav .add-property-btn svg {
    vertical-align: -2px;
}

#mainNavbarNav #navbarDropdown+.dropdown-menu {
    min-width: unset;
    background-color: #fff;
}

#mainNavbarNav #navbarDropdown+.dropdown-menu .dropdown-item {
    font-size: 12px !important;
}

.navbar-nav .nav-link {
    color: #fff !important;
}

.navbar-toggler {
    /* filter: invert(100%); */
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler .bar {
    height: 1px;
    display: block;
    width: 24px;
    background: #fff;
    margin-bottom: 7px;
    transition: all 0.5s ease;
}

.navbar-toggler .bar.bar2 {
    width: 19px;
    margin-left: auto;
}

.navbar-toggler .bar.bar3 {
    margin: 0;
}

.navbar-toggler:not(.collapsed) .bar.bar1 {
    transform: rotate(45deg);
    transform-origin: left center;
}

.navbar-toggler:not(.collapsed) .bar.bar2 {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .bar.bar3 {
    transform: rotate(-45deg);
    transform-origin: left center;
}

.login-card {
    width: 500px;
    max-width: 100%;
    margin: auto;
    border-radius: 30px;
    border: 1px solid #E4E4E4;
    padding: 40px 40px;
    position: relative;
    top: -90px;
    background: #fff;
}

.login-card.signup {
    width: 850px;
}

.login-card .title {
    color: #000000;
}

.login-card .subtitle {
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 0%;
}

.login-card .login-divider {
    position: relative;
    margin: 20px 0;
    text-align: center;
}

.login-card .login-divider span {
    background: #fff;
    width: 60px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.login-card .login-divider::after {
    content: "";
    background: #E7E7E7;
    height: 1px;
    width: 100%;
    position: absolute;
    top: 12px;
    left: 0;
    z-index: 0;
}

.login-card .google-btn {
    border: 1px solid #D3D9E5;
    color: #121317;
    font-size: 14px;
    padding: 12px;
}

.login-card .google-btn:hover {
    color: #fff;
}


.login-card .register-link {
    font-weight: 700;
    line-height: 16px;
    color: #121317;
}



/* Overview css */
.main-card {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .06), 0 1px 3px rgba(16, 24, 40, .10);
    border: 1px solid var(--border-color);
    position: relative;
    top: -80px;
    width: 1200px;
    margin: auto;
    max-width: 100%;
    padding: 25px;
}

/* ===== SIDEBAR ===== */
.sidebar {
    border-radius: 30px;
    border: 1px solid var(--border-color);
    background: linear-gradient(to bottom, #f3f4f6, #fff);
    padding: 24px;
}

.sidebar h3 {
    font-size: 16px;
    font-weight: 700;
    margin: 0
}

.sidebar p {
    margin: 4px 0 0;
    font-size: 12px;
    color: #6b7280
}

.timeline {
    margin-top: 16px;
    padding-left: 0;
    list-style: none
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 5rem;
    position: relative
}

.timeline-item>div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center
}

.timeline-dot {
    width: 32px;
    height: 32px;
    background: #fde6cf;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 0 0 0 4px #ffe9d7 inset;
    text-align: center;
    line-height: 2;
    transition: all 0.5s ease;
}

.timeline-item:not(:last-child)>.timeline-dot::after,
.timeline-item:not(:last-child)>.timeline-dot::before {
    content: "";
    position: absolute;
    left: 16px;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 40px);
    background: #fde6cf;
    z-index: 0;
    top: 36px;
    border-radius: 8px;
    transition: all 0.5s ease;
}

.timeline-item:not(:last-child)>.timeline-dot::after {
    height: 0;
}

.timeline-item.completed:not(:last-child)>.timeline-dot::after {
    background-color: var(--theme-primary-color);
    height: calc(100% - 40px);
}

.timeline-item .timeline-dot [data-svg-icon] {
    transition: all 0.5s ease;
    opacity: 0;
}

.timeline-item .timeline-dot [data-svg-icon] path {
    stroke-dasharray: 20;
    stroke-dashoffset: 20;
    transition: stroke-dashoffset 0.4s ease;
}

.timeline-item.completed .timeline-dot [data-svg-icon] {
    opacity: 1;
}

.timeline-item.completed .timeline-dot [data-svg-icon] path {
    stroke-dashoffset: 0;

}

.timeline-item.in-progress .timeline-dot,
.timeline-item.completed .timeline-dot {
    background: var(--theme-primary-color);
    box-shadow: none
}

.timeline-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0
}

.timeline-title {
    cursor: pointer;
    font-size: 16px;
    color: #121317;
}

.timeline-item.active .timeline-title {
    font-weight: 700;
}

.status-badge {
    width: fit-content;
    border-radius: 9999px;
    background: #121317;
    color: #fff;
    padding: 3px 10px;
    font-size: 10px;
    font-weight: 400;
    height: 20px;
    display: none;
}

.timeline-item.in-progress .status-badge {
    background-color: #121317;
    display: block;
}

.timeline-item.completed .status-badge {
    background-color: var(--theme-primary-color);
    display: block;
}

/* progress */
.progress-mini {
    margin-top: 10px;
    margin-bottom: 40px;
}

.progress-mini .label {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    margin-bottom: 4px;
    color: #4b5563;
}

.custom-progress {
    height: 6px;
    background: #e5e7eb;
    border-radius: 9999px;
    overflow: hidden
}

.custom-progress-bar {
    height: 100%;
    background: var(--theme-primary-color);
    border-radius: 9999px;
    transition: all 0.5s ease;
}


/* ===== FORM ===== */
.form-section {
    border-radius: 30px;
    border: 1px solid var(--border-color);
    padding: 24px
}

.form-section h2 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 24px
}

.project-step-back-btn {
    cursor: pointer;
}

.project-step-back-btn svg {
    width: 18px;
}

.required {
    color: var(--theme-primary-color)
}

/* .form-control,
.form-select {
    border-radius: 4px;
    border: 1px solid #d1d5db;
    padding: 8px 10px;
    font-size: 12px;
    background: #fff
} */

.form-control:focus,
.form-select:focus {
    border-color: var(--theme-primary-color);
    box-shadow: 0 0 0 2px rgba(255, 122, 0, .3);
    outline: none
}

textarea.form-control {
    min-height: 110px
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    background: #111;
    color: #fff;
    padding: 2px 10px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 400;
    height: 20px;
    border: none;
}

.chipset {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem
}

.btn-check+.chip {
    border: 1px solid var(--border-color);
    background: #fff;
    color: #111;
    padding: 14px 20px;
    border-radius: 6px;
    font-weight: 400;
    font-size: 12px;
    height: 47px;
}

.btn-check:checked+.chip {
    background: var(--theme-primary-color);
    color: #fff;
    border-color: var(--theme-primary-color)
}

/* .fieldset {
    padding: 16px;
    border: 1px dashed var(--border-color);
    border-radius: 12px;
    background: #fff
} */

.fieldset .title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: .5rem
}

.icon-pill {
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: bold;
}

.icon-pill [data-svg-icon] {
    width: 18px;
    min-width: 18px;
    height: 18px;
    min-height: 18px;
    border-radius: 50%;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    line-height: 1;
    margin-left: 2px;
    vertical-align: text-top;
}

.icon-pill:hover [data-svg-icon] {
    opacity: 0.8;
}

.icon-pill.orange [data-svg-icon] {
    background-color: var(--theme-primary-color);
}

.icon-pill.dark {
    background: #111;
    color: #fff;
    border-color: #111
}

.btn-delete-villa-row,
.btn-delete-builder-floor-row {
    position: absolute;
    top: 14px;
    right: -14px;
}

/* Overview css ended */

/* location css */

.nearby-input {
    /* width: 50px !important;
    height: 32px !important; */
    /* padding: 4px; */
    font-size: 12px;
    /* text-align: center; */
}

.map-box {
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    height: 260px;
    background: #eef2f7;
}

.map-embed {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.distance-btn {
    background: var(--theme-primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

/* location css ended*/




/* Amenity css  */
.amenity-card {
    width: calc((100% / 6) - 5rem/6);
    min-width: 120px;
}

.amenity-card .amenity-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.amenity-card .amenity-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 15px;
    outline: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.5s ease;
    height: 70px;
    justify-content: center;
    min-width: 100px;
}

.amenity-card .amenity-checkbox:checked+.amenity-label {
    outline: 2px solid #ffa726;
    background-color: #FF7F004A;
}

/* .amenity-card .amenity-label svg {
    color: #121317;
    margin-bottom: 8px;
    transition: all 0.5s ease;
} */

.amenity-card .amenity-label span {
    font-size: 12px;
    text-align: center;
    line-height: 12px;
    color: #373737;
}

.amenity-card img {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

/* Amenity css ended */


/* layout and plans css */

/* Tile/card: exact 194 x 148 */



.lp-card {
    position: relative;
    border-radius: var(--card-r);
    overflow: hidden;
    background: #eee;
    width: 194px;
    height: 148px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-item .lp-card {
    width: 100%;
}

.lp-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
}

.btn-x {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #111;
    color: #fff;
    border: 0;
}

.btn-edit {
    position: absolute;
    top: 8px;
    right: 44px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--theme-primary-color);
    color: #fff;
    border: 0;
    box-shadow: 0 6px 16px rgba(255, 122, 0, .35);
}

.addmore {
    width: 195px;
    height: 150px;
    min-height: 148px;
    border: 2px dashed #FF7F00;
    border-radius: var(--card-r);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--theme-primary-color);
    background: #fff;
    position: relative;
    overflow: hidden;
}

.addmore input {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0;
    /* position: absolute; */
    inset: 0;
    cursor: pointer;
    width: 100%;
}

/* Under-card meta lines (match card width) */
.meta {
    width: 194px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 6px;
}

.plan-item .meta {
    width: 100%;
}

.meta .title {
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    background: #F5F5F5;
    width: 100%;
    position: relative;
    top: -10px;
    height: 38px;
    display: block;
    font-size: 12px;
    color: #000;
    line-height: 18px;
    font-weight: 700;
    padding: 9px;
}

.add-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--theme-primary-color);
    cursor: pointer;
    user-select: none;
}

.dim {
    font-size: 12px;
    color: #1f1f1f;
    opacity: .9;
}

.sect-title {
    font-size: 16px;
    font-weight: 700;
    margin: 18px 0 12px;
    color: #121317;
}

/* layout and plans css  ended */


/* Gallery css */

.grid .col {
    margin-bottom: 22px;
}

/* Photo card */
.g-card {
    position: relative;
    border-radius: var(--card-r);
    overflow: hidden;
    background: #eee;
    width: 100%;
    /* min-width: 194px; */
    height: 148px;
}

.g-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
}

.btn-x {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    border: 0;
    display: grid;
    place-items: center;
}

/* Cover toggle (pure CSS) */
.cover-input {
    background: transparent;
    border: 1px solid #999;
    color: var(--theme-primary-color);
}

.cover-toggle {
    position: absolute;
    top: 10px;
    left: -2px;
    height: 27px;
    display: flex;
    align-items: center;
    padding: 0 .8rem;
    gap: .45rem;
    border-radius: 0 14px 14px 0;
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    background: #121317bd;
    user-select: none;
    cursor: pointer;
}


/* When selected -> becomes orange 'Cover photo' */
.cover-toggle.active {
    color: var(--theme-primary-color);
}

/* Gallery css ended */

/* project table css */
#projects-table-container {
    min-height: calc(100vh - 200px);
}

#projects-table-container .section-title {
    font-weight: 700;
    font-size: 20px;
    /* margin-bottom: 22px; */
}

#projects-table-container .section-sub_title {
    font-size: 12px;
    color: #373737;
    line-height: 18px;
    margin-bottom: 25px;
}

#projects-table-container .table-responsive {
    background-color: white;
    border-radius: 0.75rem;
    /* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); */
}

/* #projects-table-container .custom-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #d1d5db;
    margin-bottom: 0;
} */

#projects-table-container .custom-table thead th {
    color: #757575;
    padding: 12px;
    font-weight: bold;
    font-size: 14px;
    border: 1px solid #d1d5db;
    text-align: center;
    background: #1d1d1d;

}

#projects-table-container .custom-table tbody td {
    /* color: black;
    font-size: 14px;
    border: 1px solid #d1d5db;
    text-align: center;
    background-color: white; */
    white-space: nowrap;
}

#projects-table-container .custom-table .progress-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#projects-table-container .custom-table .status-dot {
    display: inline-block;
    border-radius: 50%;
    width: 8px;
    height: 8px;
}

#projects-table-container .custom-table .status-dot.amber {
    background-color: #f59e0b;
}

#projects-table-container .custom-table .status-dot.green {
    background-color: #10b981;
}

#projects-table-container .custom-table .status-dot.red {
    background-color: #ef4444;
}

#projects-table-container .custom-table .progress-text.amber {
    color: #f59e0b;
}

#projects-table-container .custom-table .progress-text.green {
    color: #10b981;
}

#projects-table-container .custom-table .progress-text.red {
    color: #ef4444;
}

#projects-table-container .custom-table .progress-completed {
    font-weight: 600;
    color: black;
}

#projects-table-container .custom-table .action-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

#projects-table-container .custom-table .action-buttons .btn-project-edit {
    width: 100%;
    border: none;
    border-right: 1px solid #d1d5db;
    padding: 12px;
    font-weight: 500;
    background-color: white;
    color: black;
    text-align: center;
}

#projects-table-container .custom-table .action-buttons .btn-delete {
    width: 100%;
    background-color: var(--theme-primary-color);
    color: white;
    padding: 12px;
    border: none;
}

#projects-table-container .custom-table .action-buttons .btn-edit:hover {
    background-color: #f8f9fa;
    color: black;
}

#projects-table-container .custom-table .action-buttons .btn-delete:hover {
    background-color: #d97706;
}

#projects-table-container .projects-empty-container {
    height: calc(100vh - 260px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 650px;
    max-width: 90%;
    margin: auto;
    text-align: center;
}

#projects-table-container .projects-empty-container .no-data-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 100%;
}

#projects-table-container .projects-empty-container .no-data-subtitle {
    font-size: 12px;
    line-height: 18px;
    color: #373737;
}

#projects-table-container .projects-empty-container .add-property-btn {
    font-weight: 400;
    width: 165px;
    height: 40px;
    padding: 10px;
}

#projects-table-container .projects-empty-container .add-property-btn svg {
    vertical-align: -2px;
}

/* Projects Table Css ended */


.profile-form-card {
    width: 800px;
    margin: auto;
    max-width: 90%;
    border: 1px solid #E4E4E4;
    border-radius: 30px;
    padding: 20px;
}

.profile-form-card .profile-title {
    /* font-family: Plus Jakarta Sans; */
    font-weight: 700;
    /* font-style: Bold; */
    font-size: 20px;
    /* leading-trim: NONE; */
    /* line-height: 100%; */
    /* letter-spacing: 0%; */
}

.profile-form-card .btn {
    height: 40px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 6px;
}


.profile-form-card .profile-image-upload {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #D3D9E5;
    transition: border-color 0.3s ease;
    display: inline-block;
}

.profile-form-card .profile-image-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-form-card #change_profile_photo svg {
    width: 14px;
    height: 14px;
    vertical-align: -1px;
}

.profile-form-card .actions .btn {
    width: 150px;
}

.profile-form-card .section-divider {
    border-color: #D9D9D9;
}

.profile-form-card #id_card {
    padding: 14px;
}











@media screen and (max-width: 767px) {
    body {
        padding-top: 80px;
    }

    .webite-header {
        background-image: none;
        text-align: center;
        height: unset;
        border-radius: 0;
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 999;
    }

    .webite-header .navbar {
        padding: 15px 0;
    }

    .webite-header .logo-normal {
        margin-top: 0;
        margin-left: 0;
        height: 35px;
    }

    .login-card {
        top: 30px;
        border: 0;
        padding: 20px 10px;
        background: transparent;
        border-radius: 0;
    }

    .main-card {
        top: 0;
        margin-top: 16px;
        border-radius: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
    }

    .form-section {
        padding: 5px;
        border: none;
    }

    .login-card .login-divider span {
        background: #f5f5f5;
    }

    #mainNavbarNav {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        /* height: calc(100% - 75px); */
        background: #000000eb;
        z-index: 999;
    }

    .menu-actions {
        display: flex;
        align-items: center;
    }

    .add-property-btn-mobile {
        font-weight: 400;
        font-size: 16px;
        margin-right: 20px;
    }

    .add-property-btn-mobile span[data-svg-icon] {
        background: var(--theme-primary-color);
        height: 18px;
        width: 18px;
        display: inline-block;
        vertical-align: text-bottom;
        border-radius: 50%;
        line-height: 13px;
        margin-left: 5px;
    }

    .add-property-btn-mobile svg {
        width: 10px;
        height: 10px;
    }

    #mainNavbarNav .navbar-nav {
        height: calc(100vh - 75px);
    }

    #mainNavbarNav .navbar-nav .nav-item a {
        text-align: left;
        padding: 15px 20px;
        font-size: 16px;
        line-height: 100%;
        border-bottom: 1px solid #4C4C4C;
    }

    #mainNavbarNav .navbar-nav .nav-item a.active {
        color: var(--theme-primary-color) !important;
        font-weight: bold;
    }

    .mobile-form-actions {
        /* position: fixed; */
        bottom: 0;
        /* background: #121317; */
        left: 0;
        width: 100%;
        padding: 20px 0;
        /* z-index: 99; */
        display: flex;
        gap: 15px;
        flex-direction: row-reverse;
    }

    .builder-floor-row {
        border: 1px solid #f5c984;
        padding: 15px;
        border-radius: 8px;
        position: relative;
        margin-bottom: 20px !important;
    }

    .builder-floor-row:last-child {
        margin-bottom: 10px !important;
    }

    .btn-delete-builder-floor-row {
        position: static;
        width: 100%;
        background: var(--theme-primary-color);
        display: block;
        padding: 11px;
        margin-top: 7px;
        text-align: center;
        border-radius: 8px;
        height: 40px;
    }

    .btn-delete-builder-floor-row::after {
        content: "Remove Row";
        color: #fff;
        line-height: 19px;
        vertical-align: -1px;
    }

    .btn-delete-builder-floor-row svg path {
        fill: #fff !important;
    }

    .villa-row {
        border: 1px solid #f5c984;
        padding: 15px;
        border-radius: 8px;
        position: relative;
        margin-bottom: 20px !important;
    }

    .villa-row:last-child {
        margin-bottom: 10px !important;
    }

    .btn-delete-villa-row {
        position: static;
        width: 100%;
        background: var(--theme-primary-color);
        display: block;
        padding: 11px;
        margin-top: 7px;
        text-align: center;
        border-radius: 8px;
        height: 40px;
    }

    .btn-delete-villa-row::after {
        content: "Remove Row";
        color: #fff;
        line-height: 19px;
        vertical-align: -1px;
    }

    .btn-delete-villa-row svg path {
        fill: #fff !important;
    }

    .amenity-card {
        min-width: 30%;
    }

    .lp-card {
        width: 100%;
    }

    .addmore {
        width: calc(100% - 20px);
        margin: 15px auto;
        padding: 0;
    }

    .mobile-progress {
        background: #D9D9D9;
        height: 3px;
        position: fixed;
        top: 75px;
        left: 0;
        z-index: 99;
        width: 100%;
        transition: all 0.5s ease;
    }

    .mobile-progress-bar {
        background: var(--theme-primary-color);
        height: 100%;
    }

    .profile-form-card {
        padding: 0;
        border: none;
        max-width: 100%;
    }

}