﻿@font-face {
    font-family: Hel;
    src: url('/fonts/Helvetica Light.ttf');
    font-weight: normal;
    font-style: normal;
}

:root {
    --app-font: verdana;
    --text-color:#444;
}

html, body {
    font-family: verdana;
    font-size: 14px;
    color: #444;
}

/* Remove focus outlines everywhere */
input,
select,
textarea,
button {
    outline: none;
    box-shadow: none;
}

    /* Even on focus */
    input:focus,
    select:focus,
    textarea:focus,
    button:focus {
        outline: none;
        box-shadow: none;
    }


    input:focus,
    input:focus-visible,
    select:focus,
    select:focus-visible,
    textarea:focus,
    textarea:focus-visible {
        outline: none !important;
        box-shadow: none !important;
    }

html {
    font-size: 16px;
    color: #444
}

p {
    padding: 5px 0px 5px 0px;
    margin: 0px 0px 0px 0px;
}
a {
    text-decoration: none;
    color: #444;
    cursor: pointer;
}

.showSmall {
    display: block;
}

.showLarge {
    display: none;
}

.desk-topbar {
    display: none;
}


.scroll {
    overflow-y: auto;
    height: calc(100vh - 200px);
    padding-bottom: 20px
}

.trans45Div {
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    justify-content: center;
    padding: 0px 0px 0px 0px;
    max-width: 1600px;
    background-color: white;
    column-gap: 20px;
    row-gap: 15px;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    gap: 1%;
}

/* ===== MOBILE TOP BAR ===== */

.mob-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    min-height: 60px;
    padding: 0 10px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
    position: relative;
}

.mob-topbar-left,
.mob-topbar-center,
.mob-topbar-right {
    display: flex;
    align-items: center;
    height: 100%;
}

.mob-topbar-left,
.mob-topbar-right {
    width: 56px;
    min-width: 56px;
    justify-content: center;
}

.mob-topbar-center {
    flex: 1;
    justify-content: center;
    overflow: hidden;
}

.mob-topbar .toplogo {
    max-height: 54px;
    max-width: 100%;
    width: auto;
    display: block;
    max-height:100%;
}

.hamburger-btn {
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.hamburger-bar {
    width: 20px;
    height: 2px;
    background-color: #333;
    display: block;
    border-radius: 2px;
}

.user-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-btn {
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.usericon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

/* desktop switch */
.desk-topbar {
    display: none;
}

@media (min-width: 900px) {
    .mob-topbar {
        display: none;
    }

    .desk-topbar {
        display: block;
    }
}

/* ===== USER MENU ===== */

.user-wrap {
    position: relative;
}

/* container */
.user-menu-wrap {
    position: absolute;
    top: 48px;
    right: 0;
    z-index: 1000;
}

/* actual menu */
.user-menu {
    background: #fff;
    border-radius: 8px;
    min-width: 180px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    padding: 6px 0;
    display: flex;
    flex-direction: column;
}

/* menu items */
.user-menu-item {
    padding: 10px 14px;
    font-size: 14px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    width: 100%;
}

    /* hover */
    .user-menu-item:hover {
        background-color: #f5f5f5;
    }

/* divider */
.user-menu-divider {
    height: 1px;
    background-color: #eee;
    margin: 6px 0;
}

/* logout styling */
.user-menu-item.logout {
    color: #cc2222;
}



/* ===== MOBILE BOTTOM SHEET ===== */

.sheet-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    z-index: 1200;
}

.sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1300;
    background: #fff;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.18);
    padding: 0 0 18px 0;
    max-height: 82vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.sheet-handle-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0 8px 0;
    cursor: pointer;
}

.sheet-handle {
    width: 42px;
    height: 5px;
    border-radius: 999px;
    background: #d0d0d0;
}

.sheet-nav {
    display: flex;
    flex-direction: column;
    padding: 4px 0 0 0;
}

.sheet-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    font-size: 15px;
    line-height: 1.2;
    color: #333;
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1;
    box-sizing: border-box;
}

    .sheet-nav-item img {
        width: 22px;
        min-width: 22px;
        height: 22px;
        object-fit: contain;
    }

    .sheet-nav-item span {
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

.sheet-nav-active {
    background: #f7f8fc;
    font-weight: 400;
}

.sheet-count {
    color: #666;
    font-size: 13px;
}

.sheet-nav-divider {
    height: 1px;
    background: #e6e6e6;
    margin: 6px 18px;
}
#spinner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.loadinggif {
    width: 78px;
    height: 78px;
    min-width: 78px;
    min-height: 78px;
}

/*===========BUTTONS===========*/
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    border-radius: 0.4rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    box-sizing: border-box;
}

/* colors */
.blue {
    background-color: #2f6fed;
    color: #fff;
}

.red {
    background-color: #d64545;
    color: #fff;
}

.green {
    background-color: #2ea44f;
    color: #fff;
}

.clear {
    background-color: #eee;
    color: #444;
}
.blue:hover {
    background-color: #255ed6;
}

.red:hover {
    background-color: #b93838;
}

.green:hover {
    background-color: #258a42;
}

.button.saved {
    background-color: #1f8f5f;
    border-color: #1f8f5f;
    color: white;
}

.button.saving {
    opacity: 0.85;
}


/* size */
.small {
    padding: .6rem .8rem;
    font-size: 0.9rem;
}

.flexdiv {
    display: flex;
    flex-wrap: wrap;
    width: 95%;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    gap: 5%;
    padding-top: 10px;
    padding-bottom: 10px
}



.fulldiv {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
    column-gap: 10px;
}


.halfdiv {
    width: 95%;
    margin-bottom: 5px;
    box-sizing: border-box;
}

.thirddiv {
    width: 100%;
    margin-top: 20px;
    box-sizing: border-box;
}

.plansdiv {
    width: 95%;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 15px;
    background-color: white;
    box-shadow: -2px -2px 2px #ccc, 2px 2px 2px #ccc;
    display: flex;
    flex-direction: column;
}

/*==========LANDING PAGE==========*/
.bannerText {
    font-family: Hel;
    font-size: 2rem;
    line-height: 1.1;
    width: 100%;
    margin-top:10px
}

.landingParagraph {
    font-family: Hel;
    font-size: 1.1rem;
    line-height: 1.1;
    max-width: 90%;
}

.landingImg {
    width:60%;
}

.fullbutton {
    width:100%
}

.blueSection {
    background: linear-gradient(135deg, #2c6fa3 0%, #1f5d84 100%);

}
.landingSectionPadding {
    padding: 15px 0px 15px 0px;
}
.divpadding {
    padding: 10px 0px 10px 0px;
}

.smallBanner {
    font-family: Hel;
    font-size: 1.4rem;
    line-height: 1.35;
    font-weight: 500;
    color: #666;
    margin-top: 8px;
    margin-bottom:8px;
}

/*========Plans=============*/
.plans-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 35px;
    row-gap: 20px;
    width: 100%;
}
.plansdiv {
    width: 95%;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 15px;
    background-color: white;
    box-shadow: -2px -2px 2px #ccc, 2px 2px 2px #ccc;
    display: flex;
    flex-direction: column;
}

.packageTitle {
    font-family: Hel;
    font-size: 26px;
    padding: 20px 10px 5px 10px;
}

.packageQuickDesc {
    font-family: Arial;
    font-size: 14px;
    height: 36px;
    color: #444;
    padding: 0px 10px 10px 10px;
}

.packagenote {
    font-family: Hel;
    font-size: 15px;
    color: #2C3E50;
    background-color: #EAF1FB;
    box-sizing: border-box;
    height: 30px;
    padding: 6px 10px 5px 10px;
}

.packageline {
    font-family: Arial;
    text-align: left;
    font-size: 16px;
    color: #444;
    line-height: 20px;
    padding: 4px 10px 4px 10px;
    height: 20px;
}

.packageicon {
    font-family: Arial;
    font-size: 15px;
    color: #444;
    padding: 4px 10px 4px 10px;
}

.packagePrice {
    font-family: Arial;
    font-size: 22px;
    color: #444;
    padding: 20px 10px 15px 10px;
}

.plan-body {
    flex: 1;
}

.plan-footer {
    padding: 0px 10px 20px 10px;
}

.plan-btn {
    width: 95%;
    height: 45px;
    border:solid 1px #ccc
}

/* Professionals banner: stacks on mobile */
.pro-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background-color: #f7f9fb;
    border-radius: 8px;
    box-shadow: -2px -2px 2px #bbb, 2px 2px 2px #bbb;
}

.pro-banner-text {
    flex: 1 1 280px;
    font-family:Hel;
    font-size:1rem;
}

.pro-banner-btn {
    flex: 0 0 auto;
    width: 100%;
}
pro-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 10px;
    background: transparent;
    font-size: 45px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s ease;
    border: 2px solid #1f5fd1;
    color: #1f5fd1;
    box-shadow: 0 4px 12px rgba(31,95,209,.12);
    align-self: center;
}

/* Arrow */
.pro-button .arrow {
    font-size: 18px;
    line-height: 1;
    transition: transform .2s ease;
}

/* Hover state */
.pro-button:hover {
    color: #fff;
    background: #1f5fd1;
    box-shadow: 0 8px 20px rgba(31,95,209,.25);
}

    .pro-button:hover .arrow {
        transform: translateX(4px);
    }



.white {
    color: white
}


.backgrounddiv {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0px;
    justify-content: center;
    background-color: white;
    border-radius: 0px 0px 0px 0px;
    overflow: hidden;
    box-sizing: border-box;
}

.backgrounddivhomes {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    height: calc(100dvh - 110px);
    background-size: cover;
    background-color: white;
    border-radius: 0px;
    overflow: hidden;
    box-sizing: border-box;
}

.page-toolbar {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #fff;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toolbar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.toolbar-title {
    font-size: 1.45rem;
    font-family: Hel;
    font-weight: 500;
    color: #444; /* Homestead blue */
    display: flex;
    align-items: center;
    gap: 10px;
}

.toolbar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 12px;
}

.icon-btn {
    width: 33px;
    height: 33px;
    max-width:33px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    cursor: pointer;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1; /* stops glyph drift */
    padding: 0; /* keeps true centering */
    text-align: center;
    box-sizing:border-box;
    flex: 0 0 33px; 

}

    .icon-btn:hover {
        background: #f0f0f0;
    }

    .icon-btn.primary {
        background: #e8f5ee;
        border-color: #1f8f3f;
        color: #1f8f3f;
    }

    .icon-btn.duplicate {
        font-size: 32px;
    }

    .icon-btn.primary.small {
        background: #e8f5ee;
        border-color: #1f8f3f;
        color: #1f8f3f;
        font-size: 18px;
        min-width: 26px;
        max-width: 26px;
        min-height: 26px;
        max-height: 26px;
        border-radius: 7px;
        box-sizing: border-box;
    }

    /* Make the back icon feel like a UI control, not a text character */
    .icon-btn-back {
        font-size: 30px;
        font-weight: 400;
        line-height: 1;
        width: 13px;
        border:none;
        height: 33px;
        background-color:transparent;
        cursor: pointer;
        display: inline-flex;
/*        align-items: center;
        justify-content: center;*/
        padding: 0; /* keeps true centering */
        text-align: center;
    }


.save-btn {
    padding: 8px 18px;
    border-radius: 8px;
    border: none;
    background: #6aa000;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

    .save-btn:hover {
        background: #5a8d00;
    }

.icon-btn svg,
.icon-btn i,
.icon-btn span {
    color: #222 !important;
    fill: #222 !important;
    opacity: 1 !important;
    filter: none !important;
}

.toolbar-actions .rz-button,
.toolbar-actions .rz-button.rz-button-md,
.toolbar-actions .rz-button.rz-button-sm {
    width: 36px;
    height: 36px;
    min-width: 36px;
    padding: 0 !important;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    box-shadow: none;
}

    .toolbar-actions .rz-button:hover {
        background: #f0f0f0;
    }

    /* Ensure the icon inside is visible */
    .toolbar-actions .rz-button .rzi,
    .toolbar-actions .rz-button i {
        font-size: 20px;
        line-height: 1;
    }

    /* When it flips to STOP state, keep it readable */
    .toolbar-actions .rz-button.rz-state-active,
    .toolbar-actions .rz-button:active {
        background: #f0f0f0;
        border-color: #ccc;
        color: #111;
    }

.table-filter {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 10px;
    border: 1px solid #d6e2f3;
    background: #f7faff;
    width: 90%; 
    margin: 10px;
}

    .table-filter input {
        border: none;
        background: transparent;
        outline: none;
        font-size: 14px;
        width: 160px;
        height: 20px;
        color: #444;
    }

        .table-filter input::placeholder {
            color: #7b8ca8;
        }

.filter-icon {
    width: 16px;
    height: 16px;
    color: #4b6fd8; /* homestead blue */
}

/*================= Core Page CSS===================*/
.cards {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0px;
    margin-top: 0px;
    column-gap: 4%;
    row-gap: 10px;
    padding: 10px 0px 10px 0px;
    width: 100%;
    justify-content: center;
    background-color: transparent;
    margin-left: auto;
    margin-right: auto;
    overflow-y: auto;
}

.mx {
    margin-left:auto;
    margin-right:auto
}
.card {
    width: 96%;
    border-radius: 15px;
    //box-shadow: -3px -3px 8px #ddd, 3px 3px 8px #ddd, 3px -3px 8px #ddd, -3px 3px 8px #ddd;
}

.homecard {
    padding: 0px;
    height: 230px
}

.cardtitle {
    font-family: Arial;
    color: #777;
    font-size: 16px;
    text-align: left;
    padding: 15px 8px 15px 12px;
    border-radius: 0px 0px 5px 5px;
}

/*==========Section Headers==========*/

.sectionheader {
    width: 96%;
    /*height: 54px;*/
    background-color: white;
    border-radius: 0px;
    color: #333;
    padding: 12px 10px 10px 10px;
    box-sizing: border-box;
    font-size: 18px;
    font-family: Hel;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.subsectionheader {
    width: 100%;
    background-color: #eef4ff;
    color: #222;
    padding: 12px 10px 10px 15px;
    box-sizing: border-box;
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 18px;
    font-family: Hel;
    border: 1px solid #dbeafe;
}

/*.subsectionheader {
    width: 98%;
    background-color: #eef4ff;
    border-radius: 10px;
    color: #222;
    font-weight: 500;
    padding: 10px 15px 10px 15px;
    box-sizing: border-box;
    margin-top: 18px;
    margin-left: auto;
    margin-right: auto;
    font-size: 19px;
    font-family: Hel;
    margin-bottom: 15px;
    border: 1px solid #dbeafe;
}*/

/*============Input Fields==========*/

.inputDiv {
    display: flex;
    flex-wrap: wrap;
    margin-left: auto;
    margin-right: auto;
    column-gap: 2%;
    row-gap: 32px;
    width: 100%;
    justify-content: center;
    background: rgba(255,255,255, .96);
    padding: 15px 0px 25px 0px;
    border-radius: 0px 0px 3px 3px
}
.inputLabel {
    font-family: Arial;
    text-align: left;
    font-size: 13px;
    color: #6a7280 !important;
    font-weight: 400;
}

.inputInnerDiv {
    padding-top: 20px;
    height: 50px;
    margin-top: 0px;
    box-sizing: border-box;
}

.inputInnerDivSelect {
    padding-top: 18px;
    height: 50px;
    margin-top: 0px;
    box-sizing: border-box;
}
.inputField {
    background: transparent;
    width: 100%;
    padding: 6px 5px 2px 5px;
    font-size:.95rem;
    outline: none;
    border: none;
    border-radius: 4px;
    color:#555
}

.bottomBorder {
    border-bottom: 1px solid rgba(0,0,0,.14) !important;
}

/*===============Tables================*/

.tablerowsmall {
    padding: 6px 6px 6px 6px;
    background-color: transparent;
    color: #666;
    text-align: left;
    font-family: Verdana;
    font-size: 12px;
    border-bottom: solid 1px #dcdcdc;
}

.tablerowtopsmall {
    padding: 10px 6px 10px 6px;
    color: #1F6E8C;
    background-color: #eee;
    text-align: left;
    font-family: Verdana;
    font-size: 13px;
    position: sticky;
    top: 0px;
    font-weight: normal;
    z-index: 10;
}


/* ===== Master table style (matches MU/Documents/Reminders) ===== */
.hs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 14px;
    overflow: hidden;
}

    .hs-table thead th {
        text-align: left;
        font-size: 13px;
        font-weight: 400;
        color: #6a7280;
        background: #f3f4f6;
        padding: 12px 12px;
        border-bottom: 1px solid rgba(0,0,0,.08);
        white-space: nowrap;
        position: sticky;
        top: 0;
        z-index: 2;
    }

    .hs-table tbody td {
        padding: 12px 12px;
        border-bottom: 1px solid rgba(0,0,0,.06);
        color: #333;
        font-size: 13px;
        vertical-align: middle;
    }

    .hs-table tbody tr:hover {
        background: #f6f7fa;
    }
    .toolbar-filter {
        margin-top: 10px;
    }

    .toolbar-filter input {
        width: 100%;
        padding: 10px;
        border-radius: 8px;
        border: 1px solid #ddd;
    }
    .rz-progressbar-label {
        font-size: .75rem
    }
    .rz-progressbar-label-value {
        font-size: .75rem
    }
    .my-datepicker .rz-inputtext {
        font-family: Arial;
        font-size: 12px;
        background-color: #fff;
    }
/* ===== Reminders panel (MU-master style) ===== */

.rm-wrap {
    width: 96%;
    margin: 16px auto 14px auto;
}

.rm-panel {
    background: #f3f4f6;
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 14px;
    padding: 14px;
}

.rm-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 6px 6px 14px 6px;
    border-bottom: 1px solid rgba(0,0,0,.08);
    margin-bottom: 12px;
}

.rm-title {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.rm-close {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.12);
    background: #fff;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    color: #444;
}

    .rm-close:hover {
        background: #f6f6f6;
    }

/* 5 items across like your current layout */
.rm-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

/* keep pairs usable */
.rm-inline {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 8px;
}

.rm-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.rm-label {
    font-size: 12px;
    color: #777;
    font-weight: 400;
}

.rm-input {
    padding: 10px 12px;
    border: 1px solid rgba(0,0,0,.14);
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    background: #fff;
}

    .rm-input:focus {
        border-color: rgba(0,0,0,.30);
    }

.rm-inline {
    display: flex;
    gap: 8px;
}

.rm-small {
    width: 72px;
    text-align: right;
}

/* Radzen date picker: make it visually match rm-input */
.rm-date .rz-datepicker,
.rm-date .rz-inputtext,
.rm-date input {
    height: 40px;
    border-radius: 10px;
}

    /* if your Radzen theme injects shadows/rings you hate */
    .rm-date .rz-inputtext:focus,
    .rm-date input:focus {
        outline: none;
        box-shadow: none;
    }

/* actions */
.rm-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 14px;
    margin-top: 10px;
    border-top: 1px solid rgba(0,0,0,.08);
}

.rm-ghost {
    height: 40px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.12);
    background: #fff;
    cursor: pointer;
    font-weight: 400;
    color: #444;
}

.rm-primary {
    height: 40px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.12);
    background: #2b3bb7;
    color: #fff;
    cursor: pointer;
    font-weight: 400;
}

    .rm-primary:hover {
        filter: brightness(.96);
    }

/* ===== Reminders list styling (MU-master vibe) ===== */

.rm-listWrap {
    background: transparent; /* wrapper */
}

/* table surface */
.rm-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 13px;
    overflow: hidden;
}

    /* header */
    .rm-table thead th {
        text-align: left;
        font-size: 12px;
        font-weight: 400;
        color: #6a7280;
        background: #f3f4f6;
        padding: 12px 12px;
        border-bottom: 1px solid rgba(0,0,0,.08);
    }

    /* body */
    .rm-table tbody td {
        padding: 12px 12px;
        border-bottom: 1px solid rgba(0,0,0,.06);
        color: #444;
        font-size: .8rem;
        vertical-align: middle;
    }

.rm-row:hover {
    background: #f6f7fa;
}

/* task emphasis */
.rm-task {
    color: #2b2f36;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* muted meta columns */
.rm-muted {
    color: #6a7280;
    font-size: 13px;
    white-space: nowrap;
}

/* date column */
.rm-date {
    white-space: nowrap;
    color: #6a7280;
    font-size: 13px;
}

/* overdue */
.rm-overdue {
    color: #d11a2a; /* red */
    font-weight: 400; /* keep non-bold */
}

/* action column */
.rm-col-actions {
    width: 52px;
    text-align: center;
}

/* icon buttons (like MU close button language) */
.rm-iconbtn {
    width: 26px;
    height: 26px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.10);
    background: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

    .rm-iconbtn:hover {
        background: #f6f7fa;
    }

    .rm-iconbtn img {
        width: 16px;
        height: 16px;
        opacity: .85;
    }

    .rm-iconbtn.danger {
        border-color: rgba(220,38,38,.25);
        background: rgba(220,38,38,.05);
    }

        .rm-iconbtn.danger:hover {
            background: rgba(220,38,38,.10);
        }

.rm-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    margin-top: 10px;
    border-top: 1px solid rgba(0,0,0,.08);
}

.rm-actions-left {
    display: flex;
}

.rm-actions-right {
    display: flex;
    gap: 10px;
}

/* delete button */
.rm-danger {
    height: 40px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(220,38,38,.25);
    background: rgba(220,38,38,.05);
    color: #b91c1c;
    cursor: pointer;
}

    .rm-danger:hover {
        background: rgba(220,38,38,.10);
    }


.roomcard {
    width: 95%;
    border-radius: 15px;
    //box-shadow: -3px -3px 8px #ddd, 3px 3px 8px #ddd, 3px -3px 8px #ddd, -3px 3px 8px #ddd;
}

.innerroomcard {
    padding: 0px 0px 0px 0px;
    height: 166px;
    background-size: 105%;
    border-radius: 10px 10px 0px 0px;
    vertical-align: bottom;
    background-position-x: center;
    /*box-shadow: 5px 5px 10px #888, -5px -5px 10px #888;*/
}
.roomcardtitle {
    font-family: Arial;
    color: #777;
    font-size: 16px;
    text-align: left;
    padding: 12px 8px 12px 10px;
    border-radius: 0px 0px 10px 10px;
}
/*===========Pictures==========*/
.pictures {
    width: 96%;
    position: relative;
}

.pictureDelete {
    position: absolute;
    width: 32px;
    height: 40px;
    left: 1px;
    bottom: 8px;
    background-color: transparent;
    z-index: 2;
    border-radius: 6px;
    padding: 5px 0px 0px 7px;
    box-sizing: border-box
}

.pictureDefault {
    position: absolute;
    width: 32px;
    height: 40px;
    right: 5px;
    bottom: 8px;
    background-color: transparent;
    z-index: 2;
    padding: 5px 0px 0px 5px;
    border-radius: 6px;
    box-sizing: border-box
}

.photo-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

/* Make sure the photo fills the card nicely */
.photo-img {
    display: block;
    width: 100%;
    height: auto;
}

/* Actions container: bottom-right overlay */
.photo-actions {
    position: absolute;
    right: 8px;
    bottom: 8px;
    display: flex;
    gap: 6px;
    opacity: 1; /* visible by default (for touch) */
    /*transition: opacity 0.2s ease;*/
}

/* On devices that support hover: hide until hover */
@media (hover: hover) and (pointer: fine) {
    .photo-actions {
        opacity: 0;
        animation: none !important;
        transform: none !important;
    }

    .photo-card:hover .photo-actions {
        opacity: 1;
    }
}

/* Base circular button */
.photo-icon-btn {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    padding: 0;
    /*transition: background-color 0.15s ease, box-shadow 0.15s ease;*/
}

/* Default / “set as main photo” look */
.photo-icon-btn--primary:hover {
    background: #ffffff;
    color: #0071E3;
}

.photo-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    fill: none;
}


/* Delete look – still subtle, not screaming red box */
.photo-icon-btn--danger .photo-icon {
    color: #d67c7c;
}

.photo-icon-btn--primary .photo-icon {
    color: #0071E3;
}

.photo-icon-btn.filled .photo-icon {
    fill: currentColor; /* This will fill the star with the same color as the stroke */
}


.photo-icon-btn,
.photo-icon-btn *,
.photo-actions,
.photo-actions * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

.photo-classification {
    display: flex;
    gap: 10px;
    background-color: #f8f9fa; /* Light gray background */
    border: 1px solid #dee2e6; /* Subtle border */
    border-radius: 8px; /* Rounded corners */
    padding: 6px 8px 6px 8px;
    align-items: center;
    width: 100%;
    margin-top: 8px;
}

    .photo-classification select {
        border: 1px solid #ccc;
        border-radius: 4px;
        padding: 6px 10px;
        font-size: 14px;
        background-color: #fdfdfd;
        appearance: none; /* Removes default styling on some browsers */
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"><polyline points="1,1 5,5 9,1" style="fill:none;stroke:%23555;stroke-width:1.5"/></svg>');
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 8px;
    }
.photo-filter {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 12px;
}

.photo-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 36px;
    padding: 0 36px 0 12px;
    border-radius: 10px;
    border: 1px solid #dee2e6;
    background: #f9f9f9;
    color: #222;
    cursor: pointer;
    line-height: 36px;
}

    /* subtle hover */
    .photo-select:hover {
        background: #f0f0f0;
    }

    /* focus = Homestead blue */
    .photo-select:focus {
        outline: none;
        border-color: #2b66ff;
        box-shadow: 0 0 0 3px rgba(43,102,255,.15);
    }

/* custom chevron */
.photo-filter::after {
    content: "▾";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #666;
    pointer-events: none;
}
.popuptitle {
    font-family:Hel;
    font-size:1.2rem
}
.qa-photo {
    width: 100%;
    height: 220px;
    background: #ddd;
    border-radius: 8px;
    overflow: hidden;
}

    .qa-photo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    /*=========== FINISHES ================*/
.cardchoose {
    font-family: Arial;
    font-size: 13px;
    line-height: 22px;
    width: 44%;
    height: 134px;
    background-color: #eee;
    color: #777;
    text-align: center;
    border: solid 1px #ddd;
}

.cardchosen {
    font-family: Arial;
    font-size: 13px;
    line-height: 22px;
    width: 44%;
    height: 134px;
    background-color: white;
    color: #777;
    text-align: center;
    border: solid 1px #ddd;
}
.finishroompic {
    padding: 0px;
    vertical-align: top;
    height: 105px;
    background-size: 105%;
    border-radius: 6px 6px 0px 0px;
    vertical-align: bottom;
    background-position-x: center;
}
/*========= FURNISHINGS ==============*/

.comp-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.comp-track {
    width: 64px;
    height: 6px;
    border-radius: 999px;
    background: #e9eef6;
    overflow: hidden;
}

.comp-fill {
    height: 100%;
    width: 0%;
    background: #2f6fed; /* homestead blue */
    border-radius: 999px;
}

.comp-pct {
    font-size: 12px;
    color: #6b7280;
    font-weight: 400; /* not bold */
    width: 38px;
    text-align: right;
}

.PorPChosen {
    height: 35px;
    background-color: #95C355;
    color: white;
    font-family: Hel;
    font-size: 16px
}

.PorPnotChosen {
    height: 35px;
    background-color: #eee;
    color: #555;
    font-family: Hel;
    font-size: 16px
}


/* ===== Documents Master (modeled after Manage Users) ===== */

.doc-wrap {
    width: 95%;
    margin: 14px auto 18px auto;
}

.doc-panel {
    background: #f3f4f6;
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 14px;
}

.doc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 6px 6px 14px 6px;
    border-bottom: 1px solid rgba(0,0,0,.08);
    margin-bottom: 12px;
}

.doc-title {
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.doc-close {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.12);
    background: #fff;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    color: #444;
}

    .doc-close:hover {
        background: #f6f6f6;
    }


.doc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.doc-span-2 {
    grid-column: span 2;
}

.doc-span-all {
    grid-column: 1 / -1;
}

.doc-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.doc-label {
    font-size: 12px;
    color: #777;
    font-weight: 400;
}

/* inputs (boxed like Manage Users) */
.doc-input {
    padding: 10px 12px;
    border: 1px solid rgba(0,0,0,.14);
    border-radius: 10px;
    outline: none;
    font-size: 14px;
    background: #fff;
}

    .doc-input:focus {
        border-color: rgba(0,0,0,.30);
    }

/* upload button that matches your primary */
.doc-uploadBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.12);
    background: #2b3bb7;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}

    .doc-uploadBtn:hover {
        filter: brightness(.96);
    }

/* actions */
.doc-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-top: 14px;
    margin-top: 10px;
    border-top: 1px solid rgba(0,0,0,.08);
}

.doc-ghost {
    height: 40px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.12);
    background: #fff;
    cursor: pointer;
    font-weight: 400;
    color: #444;
}

.doc-primary {
    height: 40px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.12);
    background: #2b3bb7;
    color: #fff;
    cursor: pointer;
    font-weight: 400;
}

    .doc-primary:hover {
        filter: brightness(.96);
    }



.doc-field {
    min-width: 0;
}

/*========= VENDORS =============*/
.multiSkills {
    padding: 6px 10px 6px 10px;
    border-bottom: solid 1px #eee;
    background-color: transparent;
    color: #666;
    text-align: left;
    font-family: Verdana;
    line-height: 14px;
    font-size: .7rem !important;
}

.skillchoose {
    font-family: Arial;
    font-size: 12px;
    line-height: 16px;
    width: 12%;
    min-width: 125px;
    height: 45px;
    background-color: #eee;
    color: #777;
    text-align: center;
    border: solid 1px #ddd;
}

.skillchosen {
    font-family: Arial;
    font-size: 12px;
    line-height: 18px;
    width: 12%;
    min-width: 125px;
    height: 45px;
    background-color: #55ACE0;
    color: white;
    text-align: center;
    border: solid 1px #ddd;
}


/*========= MANAGE USERS ==============*/
.mu-wrap {
    width: 95%;
    margin: 20px auto;
}

.mu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 6px 20px 6px;
}

.mu-title {
    font-size: 22px;
    font-family: Hel;
    font-weight: 400;
    color: #333;
}

.mu-subtitle {
    margin-top: 4px;
    font-size: 13px;
    color: #777;
    max-width: 700px;
}

.mu-close {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.12);
    background: #fff;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    color: #444;
}

    .mu-close:hover {
        background: #f6f6f6;
    }

.mu-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 14px;
}

.mu-card {
    background: #f3f4f6;
    border: 1px solid rgba(0,0,0,.10);
    border-radius: 14px;
    padding: 14px;
}

.mu-card-title {
    font-size: 15px;
    font-weight: 400;
    color: #333;
    margin-bottom: 18px;
}

.mu-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mu-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mu-label {
    font-size: 12px;
    color: #777;
}

.mu-input {
    padding: 10px 12px;
    border: 1px solid rgba(0,0,0,.14);
    border-radius: 10px;
    outline: none;
    font-size: 14px;
}

    .mu-input:focus {
        border-color: rgba(0,0,0,.30);
    }

.mu-span-2 {
    grid-column: 1 / -1;
}

.mu-actions {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.mu-danger {
    height: 40px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(220,38,38,.35);
    background: rgba(220,38,38,.06);
    cursor: pointer;
}

.mu-home-list {
    border-top: 1px solid rgba(0,0,0,.08);
}

.mu-home-row {
    display: grid;
    grid-template-columns: 70px 1fr 220px;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.mu-thumb {
    width: 65px;
    height: 48px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.08);
}

.mu-home-name {
    font-weight: 400;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mu-role {
    height: 40px;
    padding: 8px 10px;
    border: 1px solid rgba(0,0,0,.14);
    border-radius: 10px;
    font-size: 14px;
    background: #fff;
}

.mu-footer {
    display: flex;
    justify-content: flex-end;
    padding-top: 14px;
}

.mu-primary {
    height: 40px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,.12);
    cursor: pointer;
}






















/*For Wide Screens*/
@media (min-width: 1024px) {

    .showSmall {
        display: none;
    }

    .showLarge {
        display: block;
    }

    .mob-topbar {
        display: none;
    }

    html {
        font-size: 16px;
        color: #444
    }

    .white {
        color: white
    }

    .mainPage {
        position: relative;
        background-color: transparent;
        height: calc(100vh - 90px);
        width: 100%;
        padding: 0px 0px 0px 0px;
    }

    .scroll {
        overflow-y: auto;
        height: calc(100% - 80px);
        padding-bottom: 20px
    }


    .icon-btn-back {
        width: 33px;
        height: 33px;
        border-radius: 8px;
        border: 1px solid #ddd;
        background: #f9f9f9;
        cursor: pointer;
        font-size: 20px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        line-height: 1; /* stops glyph drift */
        padding: 0; /* keeps true centering */
        text-align: center;
    }


    /* ===== DESKTOP TOP BAR ===== */

    .table-filter {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 6px 10px;
        border-radius: 10px;
        border: 1px solid #d6e2f3;
        background: #f7faff;
        margin: 0px
    }


    .desk-topbar {
        display: block;
        width: 100%;
        background: #fff;
        border-bottom: 1px solid #ddd;
    }

    .topbar-inner {
        max-width: 1500px;
        margin: 0 auto;
        height: 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        box-sizing: border-box;
    }

    .desk-topbar .toplogo {
        height: 64px;
        width: auto;
        display: block;
        cursor: pointer;
    }

    .topbar-right {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .topbar-link {
        background: none;
        border: none;
        font-size: 14px;
        color: #333;
        cursor: pointer;
        padding: 6px 8px;
    }

        .topbar-link:hover {
            text-decoration: underline;
        }

    /*============NAV PANEL================*/

    .left-nav-panel {
        width: 275px;
        min-width: 275px;
        padding-left: 1.25rem;
        padding-top: 0.95rem;
        box-sizing: border-box;
    }

    .mainPage {
        max-width: 1500px;
        margin: 0 auto;
        display: flex;
        box-sizing: border-box;
    }

    .content {
        flex: 1;
        min-width: 0;
    }

    .navline {
        display: flex;
        align-items: center;
        column-gap: 0.75rem;
        padding: .65rem 0;
        cursor: pointer;
        box-sizing: border-box;
        border-radius: 0.5rem;
        transition: background-color 0.15s ease;
    }



    .navline-first {
        margin-top: 1rem;
    }

    .navimg {
        width: 1.75rem;
        min-width: 1.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .navimg img {
            width: 1.5rem;
            height: 1.5rem;
            object-fit: contain;
            display: block;
        }

    .navtext {
        font-size: .86rem;
        line-height: 1.35;
        color: #444;
    }

    .navtextselected {
        font-size: .86rem;
        line-height: 1.35;
        color: #1f2ea3;
        font-weight: 400;
    }

    .navtitle {
        font-size: 0.9rem;
        line-height: 1.3;
        color: #666;
        padding-top: 0.9rem;
        padding-bottom: 0.2rem;
    }

    .button {
        min-width: 140px;
        max-width: 250px;
    }

    .small {
        min-width: 130px;
    }

    .flexdiv {
        max-width: 1600px;
        margin-left: auto;
        margin-right: auto;
    }

    .halfdiv {
        width: 45%;
        margin-left: auto;
        margin-right: auto;
    }

    .thirddiv {
        width: 26%;
        margin-top: 20px;
        opacity: .85;
    }

    /*==========LANDING PAGE==========*/
    .bannerText {
        font-family: Hel;
        font-size: 3.0rem;
        line-height: 1.1;
        width: 100%;
    }

    .landingParagraph {
        font-family: Hel;
        font-size: 1.2rem;
        line-height: 1.1;
        max-width: 90%
    }

    .landingSectionPadding {
        padding: 35px 0px 35px 0px;
    }

    .smallBanner {
        font-size: 1.6rem;
        line-height: 1.15;
    }

    /*==========Plans==========*/
    .plans-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 35px;
        row-gap: 20px;
        width: 100%;
    }

    .plansdiv {
        width: 22%;
        height: auto;
        padding: 0px;
    }


    .packageTitle {
        font-family: Hel;
        font-size: 26px;
        padding: 20px 10px 5px 10px;
    }

    .packageQuickDesc {
        font-family: Arial;
        font-size: 14px;
        height: 36px;
        color: #444;
        padding: 0px 10px 10px 10px;
    }

    .packagenote {
        font-family: Hel;
        font-size: 15px;
        color: #2C3E50;
        background-color: #EAF1FB;
        box-sizing: border-box;
        height: 30px;
        padding: 6px 10px 5px 10px;
    }

    .packageline {
        font-family: Arial;
        text-align: left;
        font-size: 16px;
        color: #444;
        line-height: 20px;
        padding: 4px 10px 4px 10px;
        height: 20px;
    }

    .packageicon {
        font-family: Arial;
        font-size: 15px;
        color: #444;
        padding: 4px 10px 4px 10px;
    }

    .packagePrice {
        font-family: Arial;
        font-size: 22px;
        color: #444;
        padding: 20px 10px 15px 10px;
    }


    .pro-banner-btn {
        width: auto;
    }

    /* Core Pages */
    .mainPage {
        position: relative;
        background-color: transparent;
        height: calc(100vh - 65px);
        width: 100%;
        padding: 30px 0px 30px 0px;
    }

    .backgrounddiv {
        margin-top: 10px;
        width: 98%;
        height: calc(100vh - 130px);
        background-color: white;
        border-radius: 12px;
        overflow: hidden;
        box-sizing: border-box;
        box-shadow: -3px -2px 10px #bbb, 5px 5px 10px #bbb;
    }

    .backgrounddivhomes {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        height: calc(100vh - 110px);
        padding: 0px 0px 25px 0px;
        justify-content: center;
        background-size: cover;
        background-color: white;
        border-radius: 12px;
        overflow: hidden;
        box-sizing: border-box;
        box-shadow: -3px -2px 10px #bbb, 5px 5px 10px #bbb;
    }

    .cards {
        width: 100%;
        margin-bottom: 10px;
        column-gap: 1%;
        row-gap: 12px;
        padding: 15px 0px 0px 0px;
    }

    .card {
        width: 31.5%;
        border-radius: 8px;
        border: solid 1px #ccc;
    }

    .homecard {
        height: 230px;
    }

    .cardtitle {
        font-family: Arial;
        font-size: 15px;
        color: #777;
        text-align: center;
        padding: 12px 10px 12px 10px;
        background-color: #bbb;
        text-align: left;
        background-color: transparent;
        /*border: solid 1px #ccc;*/
        border-radius: 0px 0px 8px 8px;
        /*border-radius: 8px 8px 0px 0px;*/
    }

    .fulldiv {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        column-gap: 1%;
        row-gap: 15px;
    }

    .tablerowsmall {
        padding: 8px 6px 8px 6px;
        border-bottom: solid 1px #dcdcdc;
        background-color: transparent;
        color: #444;
        text-align: left;
        font-family: Verdana;
        font-size: 12px
    }

    .tablerowtopsmall {
        padding: 10px 6px 5px 6px;
        border-bottom: solid 1px #528fb4;
        color: #1F6E8C;
        text-align: left;
        font-family: Verdana;
        font-size: 13px;
        position: sticky;
        top: 0px;
        font-weight: normal;
        z-index: 10;
    }
    /*===========Input Fields ================*/

    .inputDiv {
        max-width: 1600px;
        column-gap: 1%;
        row-gap: 40px;
        justify-content: center;
        padding: 15px 0px 20px 0px;
        border-radius: 0px 0px 3px 3px;
    }

    .inputLabel {
        font-family: Arial;
        text-align: left;
        font-size: 13px;
        color: #6a7280 !important;
        font-weight: 400;
    }

    .inputInnerDiv {
        padding-top: 20px;
        height: 50px;
        margin-top: 0px;
        box-sizing: border-box;
    }

    .inputInnerDivSelect {
        padding-top: 18px;
        height: 50px;
        margin-top: 0px;
        box-sizing: border-box;
    }

    .inputField {
        font-size: .95rem
    }

    /*===============Sections====================*/
    .sectionheader {
        width: 97%;
        height: 60px;
        background-color: white;
        border-radius: 0px;
        color: #222;
        padding: 20px 0px 0px 5px;
        box-sizing: border-box;
        margin-top: 5px;
        font-size: 20px;
        font-family: Hel;
        display: flex;
    }


    /*.section-header {
        background: #eef4ff;*/ /* soft blue */
        /*border: 1px solid #dbeafe;
        border-radius: 10px;
        padding: 10px 14px;
        font-weight: 500;
        color: #222;
    }*/

    .subsectionheader {
        width: 98%;
        background-color: #eef4ff;
        border-radius: 10px;
        color: #222;
        font-weight: 500;
        padding: 10px 15px 10px 15px;
        box-sizing: border-box;
        margin-top: 18px;
        margin-left: auto;
        margin-right: auto;
        font-size: 19px;
        font-family: Hel;
        margin-bottom: 15px;
        border: 1px solid #dbeafe;
    }

    /* ===== Reminders panel (MU-master style) ===== */

    .rm-wrap {
        width: 96%;
        margin: 16px auto 14px auto;
    }

    .rm-panel {
        background: #f3f4f6;
        border: 1px solid rgba(0,0,0,.10);
        border-radius: 14px;
        padding: 14px;
    }

    .rm-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 12px;
        padding: 6px 6px 14px 6px;
        border-bottom: 1px solid rgba(0,0,0,.08);
        margin-bottom: 12px;
    }

    .rm-title {
        font-size: 16px;
        font-weight: 400;
        color: #333;
    }

    .rm-close {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        border: 1px solid rgba(0,0,0,.12);
        background: #fff;
        cursor: pointer;
        font-size: 18px;
        line-height: 1;
        color: #444;
    }

        .rm-close:hover {
            background: #f6f6f6;
        }

    /* 5 items across like your current layout */
    .rm-grid {
        display: grid;
        grid-template-columns: 1.6fr 1fr 1.1fr 1fr 1.1fr;
        gap: 12px 14px;
        align-items: end;
    }

    .rm-field {
        display: flex;
        flex-direction: column;
        gap: 6px;
        min-width: 0px;
    }

    .rm-label {
        font-size: 12px;
        color: #777;
        font-weight: 400;
    }

    .rm-input {
        padding: 10px 12px;
        border: 1px solid rgba(0,0,0,.14);
        border-radius: 10px;
        outline: none;
        font-size: 14px;
        background: #fff;
    }

        .rm-input:focus {
            border-color: rgba(0,0,0,.30);
        }

    .rm-inline {
        display: flex;
        gap: 8px;
    }

    .rm-small {
        width: 72px;
        text-align: right;
    }

    /* Radzen date picker: make it visually match rm-input */
    .rm-date .rz-datepicker,
    .rm-date .rz-inputtext,
    .rm-date input {
        height: 40px;
        border-radius: 10px;
    }

        /* if your Radzen theme injects shadows/rings you hate */
        .rm-date .rz-inputtext:focus,
        .rm-date input:focus {
            outline: none;
            box-shadow: none;
        }

    /* actions */
    .rm-actions {
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        padding-top: 14px;
        margin-top: 10px;
        border-top: 1px solid rgba(0,0,0,.08);
    }

    .rm-ghost {
        height: 40px;
        padding: 10px 14px;
        border-radius: 10px;
        border: 1px solid rgba(0,0,0,.12);
        background: #fff;
        cursor: pointer;
        font-weight: 400;
        color: #444;
    }

    .rm-primary {
        height: 40px;
        padding: 10px 14px;
        border-radius: 10px;
        border: 1px solid rgba(0,0,0,.12);
        background: #2b3bb7;
        color: #fff;
        cursor: pointer;
        font-weight: 400;
    }

        .rm-primary:hover {
            filter: brightness(.96);
        }

    /* ===== Reminders list styling (MU-master vibe) ===== */

    .rm-grid {
        grid-template-columns: 1.6fr 1fr 1.1fr 1fr 1.1fr;
        gap: 12px 14px;
        align-items: end;
    }

    .rm-inline {
        display: flex;
        gap: 8px;
    }

    .rm-small {
        width: 72px;
        text-align: right;
    }

    .rm-actions {
        justify-content: flex-end;
    }

    .rm-ghost,
    .rm-primary {
        flex: unset;
    }

    /*==============Rooms=============*/
    .roomcardtitle {
        font-family: Arial;
        font-size: 16px;
        color: #777;
        text-align: center;
        padding: 12px 10px 8px 10px;
        background-color: #bbb;
        text-align: left;
        background-color: transparent;
        /*border: solid 1px #ccc;*/
        border-radius: 0px 0px 8px 8px;
        /*border-radius: 8px 8px 0px 0px;*/
    }

    .roomcard {
        width: 31%;
    }

    .innerroomcard {
        padding: 0px 0px 0px 0px;
        /*height: 205px;*/
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        border-radius: 8px 8px 0px 0px;
        vertical-align: bottom;
    }
    /*==========Pictures =============*/
    .pictures {
        width: 360px;
        /*max-height:216px;*/
    }


    /*===========  FINISHES =============*/

    .cardchoose {
        font-family: Arial;
        font-size: 15px;
        line-height: 22px;
        width: 18%;
        min-width: 250px;
        height: 165px;
        background-color: #eee;
        color: #777;
        text-align: center;
        border: solid 1px #ddd;
    }

    .cardchosen {
        font-family: Arial;
        font-size: 15px;
        line-height: 22px;
        width: 18%;
        min-width: 250px;
        height: 165px;
        background-color: white;
        color: #777;
        text-align: center;
        border: solid 1px #ddd;
    }
    .finishroompic {
        padding: 0px;
        vertical-align: top;
        height: 130px;
        background-size: 105%;
        border-radius: 6px 6px 0px 0px;
        vertical-align: bottom;
        background-position-x: center;
    }
    .PorPChosen {
        height: 35px;
        background-color: #95C355;
        color: white;
        font-family: Hel;
        font-size: 16px
    }

    .PorPnotChosen {
        height: 35px;
        background-color: #eee;
        color: #555;
        font-family: Hel;
        font-size: 16px
    }
    /*========= DOCUMENTS ===============*/
    /* grid */
    .doc-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr 1fr 1.6fr;
        gap: 12px 14px;
    }

    /*============ Vendors ============*/

    .multiSkills {
        padding: 12px 10px 12px 20px;
        border-bottom: solid 1px #eee;
        background-color: transparent;
        color: #666;
        text-align: left;
        font-family: Verdana;
        line-height: 14px;
        font-size: .7rem !important;
    }
    .skillchoose {
        font-family: Arial;
        font-size: 15px;
        line-height: 22px;
        width: 12%;
        min-width: 125px;
        height: 65px;
        background-color: #eee;
        color: #777;
        text-align: center;
        border: solid 1px #ddd;
    }

    .skillchosen {
        font-family: Arial;
        font-size: 15px;
        line-height: 22px;
        width: 12%;
        min-width: 125px;
        height: 65px;
        background-color: #55ACE0;
        color: white;
        text-align: center;
        border: solid 1px #ddd;
    }


}