/* /Components/CustomDatePicker.razor.rz.scp.css */
.custom-date-picker[b-v2e9zgato6] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    min-width: 150px;
    width: 100%;
    font-size: 14px;
    transition: all 0.2s ease;
}

.custom-date-picker:hover:not(.disabled)[b-v2e9zgato6] {
    border-color: #999;
}

.custom-date-picker.disabled[b-v2e9zgato6] {
    background: #f8f9fa; /* Match Bootstrap disabled form controls */
    border-color: #dee2e6; /* Match Bootstrap disabled form controls */
    cursor: not-allowed;
    color: #212529; /* Normal black text color for readability */
}

/* Overlay background */
.picker-modal[b-v2e9zgato6] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

/* Main popup container */
.picker-content[b-v2e9zgato6] {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

/* Header navigation */
.picker-header[b-v2e9zgato6] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.picker-nav-btn[b-v2e9zgato6] {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.2s;
    color: #6c757d;
}

.picker-nav-btn:hover[b-v2e9zgato6] {
    background: #f0f0f0;
    color: #495057;
}

.month-year-header[b-v2e9zgato6] {
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    margin: 0;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.2s;
    color: #495057;
}

.month-year-header:hover[b-v2e9zgato6] {
    background: #f0f0f0;
}

/* Year/Month selector */
.year-month-selector[b-v2e9zgato6] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.year-selector[b-v2e9zgato6], .month-selector[b-v2e9zgato6] {
    width: 100%;
}

.year-selector h5[b-v2e9zgato6], .month-selector h5[b-v2e9zgato6] {
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    color: #333;
}

.year-grid[b-v2e9zgato6] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    max-height: 200px;
    overflow-y: auto;
    padding: 8px;
    border: 1px solid #eee;
    border-radius: 6px;
}

.month-grid[b-v2e9zgato6] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 8px;
}

.year-item[b-v2e9zgato6], .month-item[b-v2e9zgato6] {
    padding: 10px 8px;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    font-size: 0.9rem;
}

.year-item:hover[b-v2e9zgato6], .month-item:hover[b-v2e9zgato6] {
    background: #f0f0f0;
    border-color: #ddd;
}

.year-item.selected[b-v2e9zgato6], .month-item.selected[b-v2e9zgato6] {
    background: #40614e;
    color: #fff;
    font-weight: bold;
    border-color: #40614e;
}

/* Calendar grid */
.calendar-grid[b-v2e9zgato6] {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.weekdays[b-v2e9zgato6] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin-bottom: 8px;
    background: #f8f9fa;
    border-radius: 4px;
    padding: 8px 4px;
    gap: 2px;
}

.weekday[b-v2e9zgato6] {
    font-weight: bold;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    color: #40614e;
}

.calendar-days[b-v2e9zgato6] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar-day[b-v2e9zgato6] {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

/* Reset any inherited styles that might interfere */
.calendar-day[b-v2e9zgato6] {
    background: transparent;
    color: inherit;
    border: none;
}

.calendar-day:hover:not(.disabled):not(.selected)[b-v2e9zgato6] {
    background: rgba(64, 97, 78, 0.25);
}

.calendar-day.current-month[b-v2e9zgato6] {
    color: #40614e;
}

.calendar-day.other-month[b-v2e9zgato6] {
    color: #dee2e6;
}

.calendar-day.today:not(.selected)[b-v2e9zgato6] {
    background: rgba(64, 97, 78, 0.1);
    border: 2px solid #40614e;
    font-weight: 600;
}

/* Ensure selected state takes highest priority */
.calendar-day.selected[b-v2e9zgato6] {
    background: #40614e !important;
    color: white !important;
    font-weight: bold !important;
    border: 2px solid #40614e !important;
}

.calendar-day.disabled[b-v2e9zgato6] {
    color: #ddd;
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.5;
}

/* Action buttons */
.picker-actions[b-v2e9zgato6],
.selector-actions[b-v2e9zgato6] {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.btn[b-v2e9zgato6] {
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 80px;
}

.btn-cancel[b-v2e9zgato6] {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

.btn-cancel:hover[b-v2e9zgato6] {
    background: #e9ecef;
}

.btn-clear[b-v2e9zgato6] {
    background: #dc3545;
    color: white;
    border: 1px solid #dc3545;
}

.btn-clear:hover[b-v2e9zgato6] {
    background: #c82333;
    border-color: #bd2130;
}

.btn-save[b-v2e9zgato6] {
    background: #40614e;
    color: white;
}

.btn-save:hover[b-v2e9zgato6] {
    background: #218838;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .picker-content[b-v2e9zgato6] {
        margin: 20px;
        padding: 16px;
        max-width: none;
        width: calc(100% - 40px);
    }
    
    .year-grid[b-v2e9zgato6] {
        grid-template-columns: repeat(4, 1fr);
        max-height: 150px;
    }
    
    .month-grid[b-v2e9zgato6] {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .picker-actions[b-v2e9zgato6],
    .selector-actions[b-v2e9zgato6] {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn[b-v2e9zgato6] {
        width: 100%;
    }
}
/* /Components/CustomDateRangePicker.razor.rz.scp.css */
.custom-date-range-picker[b-zi7c5n40p7] {
    width: 100%;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    min-height: 40px;
}

    .custom-date-range-picker:hover[b-zi7c5n40p7] {
        border-color: #007bff;
        background: white;
    }

    .custom-date-range-picker i[b-zi7c5n40p7] {
        color: #6c757d;
    }

.picker-modal[b-zi7c5n40p7] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.date-range-content[b-zi7c5n40p7] {
    max-width: 420px;
}

.picker-header[b-zi7c5n40p7] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 10px;
}

    .picker-header h4[b-zi7c5n40p7] {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
        color: #495057;
    }

.picker-nav-btn[b-zi7c5n40p7] {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
}

    .picker-nav-btn:hover[b-zi7c5n40p7] {
        background: #f8f9fa;
        color: #495057;
    }

.range-info[b-zi7c5n40p7] {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.range-item[b-zi7c5n40p7] {
    flex: 1;
    text-align: center;
}

.range-label[b-zi7c5n40p7] {
    display: block;
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 4px;
}

.range-value[b-zi7c5n40p7] {
    display: block;
    font-size: 14px;
    color: #495057;
    font-weight: 600;
}

.calendar-grid[b-zi7c5n40p7] {
    margin-bottom: 20px;
}

.weekdays[b-zi7c5n40p7] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 8px;
}

.weekday[b-zi7c5n40p7] {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #6c757d;
    padding: 8px 0;
}

.calendar-days[b-zi7c5n40p7] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.calendar-day[b-zi7c5n40p7] {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

    .calendar-day.other-month[b-zi7c5n40p7] {
        color: #dee2e6;
    }

    .calendar-day.current-month[b-zi7c5n40p7] {
        color: #495057;
    }

        .calendar-day.current-month:hover[b-zi7c5n40p7] {
            background: #e3f2fd;
        }

    .calendar-day.today[b-zi7c5n40p7] {
        background: #e3f2fd;
        color: #1976d2;
        font-weight: 600;
    }

    .calendar-day.range-start[b-zi7c5n40p7] {
        background: #1976d2;
        color: white;
        border-radius: 6px 0 0 6px;
    }

    .calendar-day.range-end[b-zi7c5n40p7] {
        background: #1976d2;
        color: white;
        border-radius: 0 6px 6px 0;
    }

    .calendar-day.range-start.range-end[b-zi7c5n40p7] {
        border-radius: 6px;
    }

    .calendar-day.in-range[b-zi7c5n40p7] {
        background: #e3f2fd;
        color: #1976d2;
        border-radius: 0;
    }

    .calendar-day.disabled[b-zi7c5n40p7] {
        color: #dee2e6;
        cursor: not-allowed;
    }

        .calendar-day.disabled:hover[b-zi7c5n40p7] {
            background: none;
        }

.quick-ranges[b-zi7c5n40p7] {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-range-btn[b-zi7c5n40p7] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 16px;
    padding: 6px 12px;
    font-size: 12px;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .quick-range-btn:hover[b-zi7c5n40p7] {
        background: #e9ecef;
        border-color: #adb5bd;
    }

.picker-actions[b-zi7c5n40p7] {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.btn[b-zi7c5n40p7] {
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 70px;
}

.btn-cancel[b-zi7c5n40p7] {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

    .btn-cancel:hover[b-zi7c5n40p7] {
        background: #e9ecef;
    }

.btn-clear[b-zi7c5n40p7] {
    background: #ffc107;
    color: #000;
}

    .btn-clear:hover[b-zi7c5n40p7] {
        background: #e0a800;
    }

.btn-save[b-zi7c5n40p7] {
    background: #28a745;
    color: white;
}

    .btn-save:hover:not(:disabled)[b-zi7c5n40p7] {
        background: #218838;
    }

.btn:disabled[b-zi7c5n40p7] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .range-info[b-zi7c5n40p7] {
        flex-direction: column;
        gap: 8px;
    }

    .quick-ranges[b-zi7c5n40p7] {
        justify-content: center;
    }

    .picker-actions[b-zi7c5n40p7] {
        flex-direction: column;
    }

    .btn[b-zi7c5n40p7] {
        width: 100%;
    }
}
/* /Components/CustomDropdown.razor.rz.scp.css */
.multiselect-dropdown[b-4gdm4a1enz] {
    position: relative;
    display: inline-block;
    min-width: 200px;
}

.dropdown-button[b-4gdm4a1enz] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    border: 1px solid #40614e;
    border-radius: 0.375rem;
    background-color: #fff;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
    min-height: 38px;
    user-select: none;
    font-size: 0.875rem;
}

    .dropdown-button:hover[b-4gdm4a1enz] {
        border-color: #adb5bd;
        background-color: #f8f9fa;
    }

    .dropdown-button.open[b-4gdm4a1enz] {
        border-color: #40614e;
        box-shadow: 0 0 0 0.2rem rgba(64, 97, 78, 0.25);
    }

.dropdown-text[b-4gdm4a1enz] {
    flex: 1;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #40614e;
    font-weight: 600;
}

.dropdown-arrow[b-4gdm4a1enz] {
    margin-left: 0.5rem;
    transition: transform 0.15s ease-in-out;
    color: #40614e;
    font-size: 0.75rem;
}

.dropdown-button.open .dropdown-arrow[b-4gdm4a1enz] {
    transform: rotate(180deg);
}

.dropdown-menu[b-4gdm4a1enz] {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    width: auto;
    background-color: #fff;
    border: 1px solid #40614e;
    border-radius: 0.375rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    max-height: 200px;
    overflow-y: auto;
    margin-top: 0.125rem;
    display: block;
}

.dropdown-item[b-4gdm4a1enz] {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
    border-bottom: 1px solid #f8f9fa;
    user-select: none;
}

    .dropdown-item:last-child[b-4gdm4a1enz] {
        border-bottom: none;
    }

    .dropdown-item:hover:not(.disabled)[b-4gdm4a1enz] {
        background-color: #f8f9fa;
    }

    .dropdown-item.selected[b-4gdm4a1enz] {
        background-color: rgba(64, 97, 78, 0.25);
        color: #0d6efd;
    }

    .dropdown-item.disabled[b-4gdm4a1enz] {
        color: #6c757d;
        cursor: not-allowed;
    }

.dropdown-checkbox[b-4gdm4a1enz] {
    margin-right: 0.5rem;
    cursor: pointer;
    pointer-events: none;
    color: #40614e;
    background-color: #40614e;
}

.dropdown-item-text[b-4gdm4a1enz] {
    flex: 1;
    font-size: 0.875rem;
    color: #40614e;
    white-space: nowrap;
}

.dropdown-item.selected .dropdown-item-text[b-4gdm4a1enz] {
    font-weight: 500;
}

.select-all-item[b-4gdm4a1enz] {
    background-color: #f8f9fa !important;
    border-bottom: 2px solid #40614E !important;
    font-weight: 600;
}

.select-all-item:hover[b-4gdm4a1enz] {
    background-color: #e9ecef !important;
}

.select-all-item .dropdown-item-text[b-4gdm4a1enz] {
    font-weight: 600;
    color: #40614E;
}

.dropdown-divider[b-4gdm4a1enz] {
    height: 1px;
    background-color: #40614E;
    margin: 0;
    opacity: 0.3;
}



/* /Components/CustomTable.razor.rz.scp.css */
.btn[b-uj1bvkoqo5] {
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 80px;
}

.th[b-uj1bvkoqo5] {
    position: sticky;
    top: 50px;
    background: white;
}

.custom-table-scrollable[b-uj1bvkoqo5] {
    border-radius: 0.375rem;
}

.table-row-clickable[b-uj1bvkoqo5] {
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
    border-radius: 10px 0px 0px 10px;
}

    .table-row-clickable:hover[b-uj1bvkoqo5] {
        background-color: var(--bs-table-hover-bg, rgba(0, 0, 0, 0.075)) !important;
    }

.custom-table-container th[role="button"][b-uj1bvkoqo5] {
    cursor: pointer;
    user-select: none;
}

    .custom-table-container th[role="button"]:hover[b-uj1bvkoqo5] {
        background-color: var(--bs-table-hover-bg, rgba(0, 0, 0, 0.075));
    }
/* /Components/CustomTimePicker.razor.rz.scp.css */
.custom-time-picker[b-4jn0pyzaco] {
    width: 100%;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

    .custom-time-picker:hover[b-4jn0pyzaco] {
        border-color: #007bff;
        background: white;
    }

    .custom-time-picker i[b-4jn0pyzaco] {
        color: #6c757d;
    }

.picker-modal[b-4jn0pyzaco] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.picker-content[b-4jn0pyzaco] {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.time-picker-content[b-4jn0pyzaco] {
    max-width: 280px;
}

.picker-header[b-4jn0pyzaco] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 10px;
}

    .picker-header h4[b-4jn0pyzaco] {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
        color: #495057;
    }

.time-wheels[b-4jn0pyzaco] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.time-wheel[b-4jn0pyzaco] {
    text-align: center;
}

.wheel-header[b-4jn0pyzaco] {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 10px;
    font-weight: 500;
}

.wheel-container[b-4jn0pyzaco] {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wheel-btn[b-4jn0pyzaco] {
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .wheel-btn:hover[b-4jn0pyzaco] {
        background: #f8f9fa;
        color: #495057;
    }

    .wheel-btn:disabled[b-4jn0pyzaco] {
        opacity: 0.5;
        cursor: not-allowed;
    }

.wheel-display[b-4jn0pyzaco] {
    margin: 10px 0;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.wheel-input[b-4jn0pyzaco] {
    font-size: 24px;
    font-weight: 600;
    color: #495057;
    min-width: 50px;
    width: 60px;
    text-align: center;
    padding: 8px 12px;
    border-radius: 8px;
    background: #f8f9fa;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    outline: none;
}

.wheel-input:focus[b-4jn0pyzaco] {
    background: white;
    border-color: #40614E;
    box-shadow: 0 0 0 3px rgba(64, 97, 78, 0.1);
}

.wheel-input:hover:not(:focus)[b-4jn0pyzaco] {
    background: #e9ecef;
}

/* Remove spinner buttons for number input */
.wheel-input[b-4jn0pyzaco]::-webkit-outer-spin-button,
.wheel-input[b-4jn0pyzaco]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.wheel-input[type=number][b-4jn0pyzaco] {
    -moz-appearance: textfield;
}

.wheel-value[b-4jn0pyzaco] {
    font-size: 24px;
    font-weight: 600;
    color: #495057;
    min-width: 50px;
    text-align: center;
    padding: 8px 12px;
    border-radius: 8px;
    background: #f8f9fa;
}

.time-separator[b-4jn0pyzaco] {
    font-size: 24px;
    font-weight: 600;
    color: #495057;
    align-self: center;
    margin-top: 20px;
}

.picker-actions[b-4jn0pyzaco] {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn[b-4jn0pyzaco] {
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 80px;
}

.btn-cancel[b-4jn0pyzaco] {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

    .btn-cancel:hover[b-4jn0pyzaco] {
        background: #e9ecef;
    }

.btn-save[b-4jn0pyzaco] {
    background: #40614E;
    color: white;
}

    .btn-save:hover[b-4jn0pyzaco] {
        background: #215637;
    }
/* /Components/LoadingSpinner.razor.rz.scp.css */
/* /Components/NavigationContextProvider.razor.rz.scp.css */
/* /Components/ToastNotification.razor.rz.scp.css */
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-ybfajtbyxx] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-ybfajtbyxx] {
    flex: 1;
}

.sidebar[b-ybfajtbyxx] {
    background-color: #ffffff;
    border-right: 1px solid #C7C7C7;
    transition: width 0.3s ease;
}

.sidebar-header[b-ybfajtbyxx] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    height: 3.5rem;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.hamburger-menu[b-ybfajtbyxx] {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #4D6F66;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.hamburger-menu:hover[b-ybfajtbyxx] {
    background-color: rgba(255, 194, 15, 0.3);
}

/* Mobile header and hamburger button */
.mobile-header[b-ybfajtbyxx] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.5rem;
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    z-index: 1000;
    align-items: center;
    padding: 0 1rem;
}

.mobile-hamburger-menu[b-ybfajtbyxx] {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #4D6F66;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.mobile-hamburger-menu:hover[b-ybfajtbyxx] {
    background-color: rgba(255, 194, 15, 0.3);
}

.top-row[b-ybfajtbyxx] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-ybfajtbyxx]  a, .top-row[b-ybfajtbyxx]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-ybfajtbyxx]  a:hover, .top-row[b-ybfajtbyxx]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-ybfajtbyxx]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* Mobile overlay for when menu is open */
.mobile-overlay[b-ybfajtbyxx] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    display: block;
}

@media (max-width: 640.98px) {
    .top-row[b-ybfajtbyxx] {
        justify-content: space-between;
    }

    .top-row[b-ybfajtbyxx]  a, .top-row[b-ybfajtbyxx]  .btn-link {
        margin-left: 0;
    }

    /* Show mobile header */
    .mobile-header[b-ybfajtbyxx] {
        display: flex;
    }

    /* Add top padding to main content to account for fixed mobile header */
    main[b-ybfajtbyxx] {
        padding-top: 3.5rem;
        margin-left: 0;
        width: 100%;
    }

    /* Mobile sidebar positioning */
    .sidebar[b-ybfajtbyxx] {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        z-index: 999;
        transition: left 0.3s ease;
        background-color: #ffffff;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }

    .sidebar.mobile-open[b-ybfajtbyxx] {
        left: 0;
    }

    /* Hide desktop hamburger on mobile since we have mobile header */
    .sidebar-header[b-ybfajtbyxx] {
        display: none;
    }
}

@media (min-width: 641px) {
    .page[b-ybfajtbyxx] {
        flex-direction: row;
    }

    /* Hide mobile header on desktop */
    .mobile-header[b-ybfajtbyxx] {
        display: none;
    }

    .sidebar[b-ybfajtbyxx] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
        left: 0; /* Ensure sidebar is visible on desktop */
    }

    .sidebar.collapsed[b-ybfajtbyxx] {
        width: 80px;
    }

    /* Show desktop sidebar header */
    .sidebar-header[b-ybfajtbyxx] {
        display: flex;
    }

    /* Hide mobile overlay on desktop */
    .mobile-overlay[b-ybfajtbyxx] {
        display: none;
    }

    .top-row[b-ybfajtbyxx] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-ybfajtbyxx]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-ybfajtbyxx], article[b-ybfajtbyxx] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-ybfajtbyxx] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-ybfajtbyxx] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Layout/NavMenu.razor.rz.scp.css */
/* Remove the old checkbox-based mobile menu implementation */
.navbar-toggler[b-xslhckedvr] {
    display: none;
}

.top-row[b-xslhckedvr] {
    height: 3.5rem;
    padding: 6px !important; /* Override MainLayout padding and match nav-item padding */
}

.top-row.collapsed[b-xslhckedvr] {
    padding: 6px !important; /* Ensure consistent padding in collapsed state */
}

.top-row.collapsed .btn-back[b-xslhckedvr] {
    width: 48px;
    height: 48px; /* Make it square like other nav items */
    padding: 0;
    justify-content: center;
    margin: 0; /* Remove margin since container now has correct padding */
    border-radius: 4px; /* Match nav-link border-radius */
}

.btn-back[b-xslhckedvr] {
    background-color: #FFCC00;
    color: #4D6F66;
    border-radius: 4px; /* Match nav-link border-radius instead of 5px */
    width: 100%;
    height: 48px; /* Match nav-link height (3rem = 48px) */
    display: flex;
    justify-content: center;
    border: none;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0; /* Remove margin since container now has correct padding */
}

.navbar-brand[b-xslhckedvr] {
    font-size: 1.1rem;
}

.bi[b-xslhckedvr] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.nav-container.collapsed .bi[b-xslhckedvr] {
    margin-right: 0;
}

.nav-text[b-xslhckedvr] {
    transition: opacity 0.3s ease;
}

.nav-container.collapsed .nav-text[b-xslhckedvr] {
    display: none;
}

.nav-container.collapsed .nav-item[b-xslhckedvr] {
    text-align: center;
}

.nav-container.collapsed .nav-link[b-xslhckedvr] {
    justify-content: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.bi-house-door-fill-nav-menu[b-xslhckedvr] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-xslhckedvr] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-xslhckedvr] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.bi-prescription2-nav-menu[b-xslhckedvr] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-prescription2' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-xslhckedvr] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
    padding: 6px;
}

    .nav-item:first-of-type[b-xslhckedvr] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-xslhckedvr] {
        padding-bottom: 1rem;
    }

    .nav-item[b-xslhckedvr]  .nav-link {
        color: #4D6F66;
        background: none;
        border: none;
        border-radius: 4px;
        height: 48px; /* Set explicit height in pixels for consistency */
        display: flex;
        align-items: center;
        width: 100%;
        transition: all 0.3s ease;
        margin: 0;
        padding: 6px;
        justify-content: flex-start; /* Default left alignment */
    }

    .nav-item[b-xslhckedvr]  a.active {
        background-color: rgba(255, 194, 15);
        color: #4D6F66;
    }

    .nav-item[b-xslhckedvr]  .nav-link:hover {
        background-color: rgba(255, 194, 15, 0.5);
        color: #4D6F66;
    }

    /* Center icons in collapsed state within their highlighted areas - DESKTOP ONLY */
    .nav-container.collapsed .nav-item[b-xslhckedvr]  .nav-link {
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
    }

.nav-scrollable[b-xslhckedvr] {
    /* Always show navigation */
    display: block;
    /* Allow sidebar to scroll for tall menus */
    height: calc(100vh - 3.5rem);
    overflow-y: auto;
}

/* Mobile specific styles */
@media (max-width: 640.98px) {
    .nav-scrollable[b-xslhckedvr] {
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }

    /* On mobile, always show text labels and use left alignment - override collapsed behavior */
    .nav-container .nav-text[b-xslhckedvr] {
        display: inline !important;
    }

    .nav-container .bi[b-xslhckedvr] {
        margin-right: 0.75rem !important;
    }

    .nav-container .nav-item[b-xslhckedvr] {
        text-align: left !important;
    }

    /* Override desktop collapsed centering - force left alignment on mobile */
    .nav-container.collapsed .nav-item[b-xslhckedvr]  .nav-link,
    .nav-container .nav-item[b-xslhckedvr]  .nav-link {
        justify-content: flex-start !important;
        align-items: center !important;
        text-align: left !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    /* Ensure icons are properly spaced on mobile */
    .nav-container.collapsed .bi[b-xslhckedvr],
    .nav-container .bi[b-xslhckedvr] {
        margin-right: 0.75rem !important;
    }

    /* Show full back button text on mobile with left alignment */
    .top-row.collapsed .btn-back[b-xslhckedvr] {
        width: 100%;
        height: 48px;
        padding: 6px;
        justify-content: flex-start;
        margin: 0;
        border-radius: 4px;
    }

    /* Ensure back button text is also left aligned on mobile */
    .top-row .btn-back[b-xslhckedvr] {
        justify-content: flex-start !important;
        text-align: left !important;
    }
}
/* /Layout/TopNavigationBar.razor.rz.scp.css */
.user-info[b-p5969bcfie] {
    margin: 10px;
    color: #8F8F8F;
}

.btn-logout[b-p5969bcfie]{
    width: 100%;
    margin-block: 10px;
}
/* /Pages/ClientFiles/ClientData/ClientDataView.razor.rz.scp.css */
.client-container[b-mj3v4lomg3] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.client-header[b-mj3v4lomg3] {
    background: white;
    border: 1px solid #40614E;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.client-info[b-mj3v4lomg3] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar[b-mj3v4lomg3] {
    font-size: 3rem;
    color: #6c757d;
}

.client-details[b-mj3v4lomg3] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.client-name[b-mj3v4lomg3] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #40614E;
}

.client-ids[b-mj3v4lomg3] {
    display: flex;
    gap: 1.5rem;
    font-size: 1rem;
    color: #40614E;
}

    .client-ids span[b-mj3v4lomg3] {
        white-space: nowrap;
    }

.client-status[b-mj3v4lomg3] {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Action Buttons */
.action-buttons[b-mj3v4lomg3] {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.first-group[b-mj3v4lomg3] {
    display: flex;
    gap: 0.75rem;
}

.bi[b-mj3v4lomg3] {
    color: #4D6F66;
}

.btn[b-mj3v4lomg3] {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary[b-mj3v4lomg3] {
    background: #4D6F66;
    color: white;
}

    .btn-primary:hover[b-mj3v4lomg3] {
        background: #fff;
        border: 1px solid #4D6F66;
        color: #4D6F66;
    }

.btn-outline-primary[b-mj3v4lomg3] {
    color: #4D6F66;
    border-color: #4D6F66;
    background: transparent;
}

    .btn-outline-primary:hover[b-mj3v4lomg3] {
        background: #4D6F66;
        color: white;
    }

.btn-secondary[b-mj3v4lomg3] {
    background: #FFCC00;
    color: white;
}

    .btn-secondary:hover[b-mj3v4lomg3] {
        background: #fff;
        border: 1px solid #FFCC00;
        color: #FFCC00;
    }

.btn-outline-secondary[b-mj3v4lomg3] {
    color: #FFCC00;
    border-color: #FFCC00;
    background: transparent;
}

    .btn-outline-secondary:hover[b-mj3v4lomg3] {
        background: #FFCC00;
        color: white;
    }

/* Client Sections */
.client-sections[b-mj3v4lomg3] {
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

/* Status Selector - styled to look like the old status badge */
.status-selector[b-mj3v4lomg3] {
    background: #fff3cd;
    color: #856404;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #ffeaa7;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    min-width: auto;
}

    .status-selector:focus[b-mj3v4lomg3] {
        outline: none;
        box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.25);
    }

    .status-selector:hover[b-mj3v4lomg3] {
        opacity: 0.9;
    }

/* Status Display - for read-only status when user doesn't have permission */
.status-display[b-mj3v4lomg3] {
    background: #fff3cd;
    color: #856404;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #ffeaa7;
    min-width: auto;
}

    .status-display .status-text[b-mj3v4lomg3] {
        display: inline-block;
    }

/* Status-specific colors matching the old badge style */
.status-otthonban[b-mj3v4lomg3] {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.status-onvacation[b-mj3v4lomg3] {
    background: #fff3cd;
    color: #856404;
    border-color: #ffeaa7;
}

.status-inhospital[b-mj3v4lomg3] {
    background: #d1ecf1;
    color: #0c5460;
    border-color: #bee5eb;
}

.status-movedout[b-mj3v4lomg3] {
    background: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.status-deceased[b-mj3v4lomg3] {
    background: #e2e3e5;
    color: #383d41;
    border-color: #d6d8db;
}

.status-movingin[b-mj3v4lomg3] {
    background: #cce5ff;
    color: #004085;
    border-color: #b8daff;
}

/* Status updating spinner */
.status-updating[b-mj3v4lomg3] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
    color: #6c757d;
}

    .status-updating i[b-mj3v4lomg3] {
        color: #007bff;
    }

/* Alert styles for status update messages */
.alert[b-mj3v4lomg3] {
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid transparent;
}

.alert-success[b-mj3v4lomg3] {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger[b-mj3v4lomg3] {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert i[b-mj3v4lomg3] {
    margin-right: 8px;
}

.btn-close[b-mj3v4lomg3] {
    background: none;
    border: none;
    cursor: pointer;
    float: right;
    font-size: 1.2em;
    opacity: 0.6;
}

    .btn-close:hover[b-mj3v4lomg3] {
        opacity: 1;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .client-container[b-mj3v4lomg3] {
        padding: 0.75rem;
    }

    .client-header[b-mj3v4lomg3] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }

    .client-info[b-mj3v4lomg3] {
        width: 100%;
    }

    .client-ids[b-mj3v4lomg3] {
        flex-direction: column;
        gap: 0.25rem;
    }

    .client-status[b-mj3v4lomg3] {
        margin-top: 10px;
        justify-content: flex-start;
    }

    .status-selector[b-mj3v4lomg3] {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }

    .action-buttons[b-mj3v4lomg3] {
        flex-direction: column;
    }

    .btn[b-mj3v4lomg3] {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .client-avatar[b-mj3v4lomg3] {
        font-size: 2rem;
    }

    .client-name[b-mj3v4lomg3] {
        font-size: 1.25rem;
    }

    .client-ids[b-mj3v4lomg3] {
        font-size: 0.8rem;
    }
}

/* Print Styles */
@media print {
    .client-container[b-mj3v4lomg3] {
        max-width: none;
        padding: 0;
    }

    .action-buttons[b-mj3v4lomg3] {
        display: none;
    }

    .client-sections[b-mj3v4lomg3] {
        background: white;
        border: none;
    }
}
/* /Pages/ClientFiles/ClientData/ClientPersonalData/ClientPersonalDataView.razor.rz.scp.css */
.form-control-plaintext[b-sx3grfrruh] {
    border: 1px solid #dee2e6;
    min-height: 38px;
    display: flex;
    align-items: center;
}

.card-header h5[b-sx3grfrruh] {
    color: #495057;
}

.form-label[b-sx3grfrruh] {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.table-responsive[b-sx3grfrruh] {
    border-radius: 10px;
    border: 1px solid #40614E;
}

.table-header[b-sx3grfrruh] {
    color: #40614E;
}

.form-control:disabled[b-sx3grfrruh], .form-control[readonly][b-sx3grfrruh] {
    background-color: #f8f9fa;
    opacity: 1;
}

.table th[b-sx3grfrruh] {
    background-color: #f8f9fa;
    border-top: none;
}

.card-header[b-sx3grfrruh] {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.badge[b-sx3grfrruh] {
    font-size: 0.75em;
}

.form-control:disabled[b-sx3grfrruh],
.form-select:disabled[b-sx3grfrruh] {
    background-color: #f8f9fa;
    border-color: #dee2e6;
}
/* /Pages/ClientFiles/ClientData/ClientPersonalData/RoomSelectorModal.razor.rz.scp.css */
/* /Pages/ClientFiles/ClientData/Expand/Components/CarePlansComponent.razor.rz.scp.css */
/* CarePlansComponent.razor.css */
.care-plan-panel[b-g9k8xmca1n] {
    padding: 0;
}

.care-plan-cards[b-g9k8xmca1n] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.care-plan-card[b-g9k8xmca1n] {
    flex: 1;
    min-width: 250px;
    border: 1px solid #40614E;
    border-radius: 10px;
    background: white;
    overflow: hidden;
}

.card-header[b-g9k8xmca1n] {
    background: #f8f9fa;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e9ecef;
}

    .card-header h6[b-g9k8xmca1n] {
        margin: 0;
        font-size: 1rem;
        font-weight: 600;
        color: #4D6F66;
    }

.card-content[b-g9k8xmca1n] {
    padding: 1rem;
    min-height: 120px;
}

.careplan-item[b-g9k8xmca1n] {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.875rem;
    color: #333;
    line-height: 1.4;
}

    .careplan-item:last-child[b-g9k8xmca1n] {
        border-bottom: none;
    }

.no-items[b-g9k8xmca1n] {
    color: #6c757d;
    font-style: italic;
    font-size: 0.85rem;
    text-align: center;
    padding: 2rem 1rem;
}

.no-data[b-g9k8xmca1n] {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .care-plan-cards[b-g9k8xmca1n] {
        flex-direction: column;
    }
    
    .care-plan-card[b-g9k8xmca1n] {
        min-width: auto;
    }
}

@media (max-width: 768px) {
    .care-plan-cards[b-g9k8xmca1n] {
        gap: 0.75rem;
    }
    
    .card-content[b-g9k8xmca1n] {
        padding: 0.75rem;
        min-height: 100px;
    }
    
    .card-header[b-g9k8xmca1n] {
        padding: 0.5rem 0.75rem;
    }
    
        .card-header h6[b-g9k8xmca1n] {
            font-size: 0.9rem;
        }
    
    .careplan-item[b-g9k8xmca1n] {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }
}
/* /Pages/ClientFiles/ClientData/Expand/Components/ClientConditionsComponent.razor.rz.scp.css */
.client-condition-panel[b-erotj8utg1] {
    display: flex;
    flex-wrap: wrap;
}

.client-condition-col[b-erotj8utg1] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.client-condition-card[b-erotj8utg1] {
    margin: 0.5rem;
    padding: 1rem 1.5rem;
    min-width: 300px;
    border-radius: 10px;
    border: solid 1px #40614E;
    height: fit-content;
    min-height: 50px;
}

.condition-content[b-erotj8utg1] {
    padding-inline: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.25rem;
    font-weight: 500;
    color: #40614E;
}

/* Action Buttons */
.action-buttons[b-erotj8utg1] {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn[b-erotj8utg1] {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary[b-erotj8utg1] {
    background: #007bff;
    color: white;
    border-color: #007bff;
}

    .btn-primary:hover[b-erotj8utg1] {
        background: #0056b3;
        border-color: #0056b3;
    }

.btn-outline-primary[b-erotj8utg1] {
    color: #007bff;
    border-color: #007bff;
    background: transparent;
}

    .btn-outline-primary:hover[b-erotj8utg1] {
        background: #007bff;
        color: white;
    }

.btn-outline-secondary[b-erotj8utg1] {
    color: #6c757d;
    border-color: #6c757d;
    background: transparent;
}

    .btn-outline-secondary:hover[b-erotj8utg1] {
        background: #6c757d;
        color: white;
    }

/* Client Sections */
.client-sections[b-erotj8utg1] {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
}

.section-title[b-erotj8utg1] {
    background: #f8f9fa;
    margin: 0;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    border-bottom: 1px solid #e9ecef;
}

/* Expandable Section */
.expandable-section[b-erotj8utg1] {
    border-bottom: 1px solid #e9ecef;
}

    .expandable-section:last-child[b-erotj8utg1] {
        border-bottom: none;
    }

.section-header[b-erotj8utg1] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    user-select: none;
}

    .section-header:hover[b-erotj8utg1] {
        background: #f8f9fa;
    }

    .section-header .section-title[b-erotj8utg1] {
        background: none;
        padding: 0;
        margin: 0;
        border: none;
        font-size: 1rem;
        color: #212529;
    }

.section-actions[b-erotj8utg1] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon[b-erotj8utg1] {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

    .btn-icon:hover[b-erotj8utg1] {
        background: #e9ecef;
        color: #495057;
    }

.expand-icon[b-erotj8utg1] {
    transition: transform 0.2s ease;
}

    .expand-icon.expanded[b-erotj8utg1] {
        transform: rotate(180deg);
    }

.section-content[b-erotj8utg1] {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid #f8f9fa;
    background: #fdfdfd;
}

/* Event Items */
.events-list[b-erotj8utg1], .measurements-list[b-erotj8utg1], .medications-list[b-erotj8utg1],
.condition-list[b-erotj8utg1], .care-needs-list[b-erotj8utg1], .accommodation-list[b-erotj8utg1],
.documents-list[b-erotj8utg1] {
    padding: 1rem 0;
}

.event-item[b-erotj8utg1] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    background: white;
    transition: box-shadow 0.2s ease;
}

    .event-item:hover[b-erotj8utg1] {
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .event-item:last-child[b-erotj8utg1] {
        margin-bottom: 0;
    }

.event-content[b-erotj8utg1] {
    flex: 1;
    min-width: 0;
}

.event-title[b-erotj8utg1] {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #212529;
    line-height: 1.4;
}

.event-description[b-erotj8utg1] {
    margin: 0;
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.4;
}

.event-date[b-erotj8utg1] {
    flex-shrink: 0;
    margin-left: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #dc3545;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .client-container[b-erotj8utg1] {
        padding: 0.75rem;
    }

    .client-header[b-erotj8utg1] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }

    .client-info[b-erotj8utg1] {
        width: 100%;
    }

    .client-ids[b-erotj8utg1] {
        flex-direction: column;
        gap: 0.25rem;
    }

    .action-buttons[b-erotj8utg1] {
        flex-direction: column;
    }

    .btn[b-erotj8utg1] {
        justify-content: center;
    }

    .section-header[b-erotj8utg1] {
        padding: 0.75rem 1rem;
    }

    .section-content[b-erotj8utg1] {
        padding: 0 1rem 1rem;
    }

    .event-item[b-erotj8utg1] {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .event-date[b-erotj8utg1] {
        margin-left: 0;
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .client-avatar[b-erotj8utg1] {
        font-size: 2rem;
    }

    .client-name[b-erotj8utg1] {
        font-size: 1.25rem;
    }

    .client-ids[b-erotj8utg1] {
        font-size: 0.8rem;
    }

    .section-actions[b-erotj8utg1] {
        gap: 0.25rem;
    }

    .btn-icon[b-erotj8utg1] {
        padding: 0.375rem;
        font-size: 0.8rem;
    }
}

/* Print Styles */
@media print {
    .client-container[b-erotj8utg1] {
        max-width: none;
        padding: 0;
    }

    .action-buttons[b-erotj8utg1] {
        display: none;
    }

    .section-actions[b-erotj8utg1] {
        display: none;
    }

    .section-header[b-erotj8utg1] {
        cursor: default;
    }

    .section-content[b-erotj8utg1] {
        display: block !important;
        background: white;
        border: none;
        padding: 1rem 0;
    }

    .event-item[b-erotj8utg1] {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
/* /Pages/ClientFiles/ClientData/Expand/Components/Details/CarePlanComponentDetails.razor.rz.scp.css */
.workflow-indicator[b-frrq91w79e] {
    font-size: 1rem;
    color: #6c757d;
}
.header-left[b-frrq91w79e] {
    color: #40614E;
}
.workflow-progress[b-frrq91w79e] {
    max-width: 600px;
    margin: 0 auto;
}

.progress-container[b-frrq91w79e] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.progress-step[b-frrq91w79e] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-circle[b-frrq91w79e] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    background: #6c757d;
    color: white;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle[b-frrq91w79e] {
    background: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.25);
}

.progress-step.completed .step-circle[b-frrq91w79e] {
    background: #198754;
}

.step-label[b-frrq91w79e] {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.progress-step.active .step-label[b-frrq91w79e] {
    color: #0d6efd;
    font-weight: 600;
}

.progress-step.completed .step-label[b-frrq91w79e] {
    color: #198754;
    font-weight: 600;
}

.progress-line[b-frrq91w79e] {
    width: 100px;
    height: 2px;
    background: #dee2e6;
    margin: 0 1rem;
    transition: all 0.3s ease;
}

    .progress-line.completed[b-frrq91w79e] {
        background: #198754;
    }

.workflow-condition-info[b-frrq91w79e] {
    max-width: 1000px;
    margin: 0 auto;
}

.care-type-form-container[b-frrq91w79e] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-section[b-frrq91w79e] {
    margin-bottom: 2rem;
}

.form-control-lg[b-frrq91w79e], .form-select-lg[b-frrq91w79e] {
    height: calc(3.5rem + 2px);
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    border: 1px solid #ced4da;
    background-color: #fefcf3;
}

    .form-control-lg:focus[b-frrq91w79e], .form-select-lg:focus[b-frrq91w79e] {
        border-color: #86b7fe;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        background-color: white;
    }

.date-input-wrapper[b-frrq91w79e] {
    position: relative;
}

.date-icon[b-frrq91w79e] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
    z-index: 5;
}

.selected-condition-info[b-frrq91w79e] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
}

.condition-card[b-frrq91w79e] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 0.5rem;
    position: relative;
}

    .condition-card.newly-created[b-frrq91w79e] {
        border-color: #ffc107;
        background: linear-gradient(135deg, #fff3cd 0%, white 100%);
    }

.newly-created-badge[b-frrq91w79e] {
    position: absolute;
    top: -8px;
    right: 10px;
    background: #ffc107;
    color: #856404;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.condition-header[b-frrq91w79e] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.condition-name[b-frrq91w79e] {
    font-weight: 600;
    color: #212529;
    font-size: 1.1rem;
}

.condition-description[b-frrq91w79e] {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.condition-flags[b-frrq91w79e] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.form-actions[b-frrq91w79e] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
    gap: 1rem;
}

    .form-actions .btn[b-frrq91w79e] {
        min-width: 150px;
        height: 50px;
    }

.form-label[b-frrq91w79e] {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #495057;
}

.form-text[b-frrq91w79e] {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

    .form-text.text-warning[b-frrq91w79e] {
        color: #856404 !important;
    }

textarea.form-control-lg[b-frrq91w79e] {
    min-height: 120px;
    resize: vertical;
}

.badge[b-frrq91w79e] {
    font-size: 0.75rem;
    padding: 0.375em 0.75em;
}





.care-plan-form-container[b-frrq91w79e] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-section[b-frrq91w79e] {
    margin-bottom: 2rem;
}

.form-control-lg[b-frrq91w79e], .form-select-lg[b-frrq91w79e] {
    height: calc(3.5rem + 2px);
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    border: 1px solid #ced4da;
    background-color: #fefcf3;
}

    .form-control-lg:focus[b-frrq91w79e], .form-select-lg:focus[b-frrq91w79e] {
        border-color: #86b7fe;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        background-color: white;
    }

.date-input-wrapper[b-frrq91w79e] {
    position: relative;
}

.date-icon[b-frrq91w79e] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
    z-index: 5;
}

.condition-actions[b-frrq91w79e] {
    padding: 1rem 0;
    border-top: 1px solid #e9ecef;
}

.form-actions[b-frrq91w79e] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
    gap: 1rem;
}

    .form-actions .btn[b-frrq91w79e] {
        min-width: 150px;
        height: 50px;
    }

.form-label[b-frrq91w79e] {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #495057;
}

.form-text[b-frrq91w79e] {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

    .form-text.text-warning[b-frrq91w79e] {
        color: #856404 !important;
    }

textarea.form-control-lg[b-frrq91w79e] {
    min-height: 120px;
    resize: vertical;
}
/* /Pages/ClientFiles/ClientData/Expand/Components/Details/CarePlanComponentEdit.razor.rz.scp.css */
.workflow-indicator[b-9pmof65pwy] {
    font-size: 1rem;
    color: #6c757d;
}

.workflow-progress[b-9pmof65pwy] {
    max-width: 600px;
    margin: 0 auto;
}

.progress-container[b-9pmof65pwy] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.progress-step[b-9pmof65pwy] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-circle[b-9pmof65pwy] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    background: #6c757d;
    color: white;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle[b-9pmof65pwy] {
    background: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.25);
}

.progress-step.completed .step-circle[b-9pmof65pwy] {
    background: #198754;
}

.step-label[b-9pmof65pwy] {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.progress-step.active .step-label[b-9pmof65pwy] {
    color: #0d6efd;
    font-weight: 600;
}

.progress-step.completed .step-label[b-9pmof65pwy] {
    color: #198754;
    font-weight: 600;
}

.progress-line[b-9pmof65pwy] {
    width: 100px;
    height: 2px;
    background: #dee2e6;
    margin: 0 1rem;
    transition: all 0.3s ease;
}

    .progress-line.completed[b-9pmof65pwy] {
        background: #198754;
    }

.workflow-condition-info[b-9pmof65pwy] {
    max-width: 1000px;
    margin: 0 auto;
}

.care-type-form-container[b-9pmof65pwy] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-section[b-9pmof65pwy] {
    margin-bottom: 2rem;
}

.date-input-wrapper[b-9pmof65pwy] {
    position: relative;
}

.date-icon[b-9pmof65pwy] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
    z-index: 5;
}

.selected-condition-info[b-9pmof65pwy] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
}

.condition-card[b-9pmof65pwy] {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 1rem;
    margin-top: 0.5rem;
    position: relative;
}

    .condition-card.newly-created[b-9pmof65pwy] {
        border-color: #ffc107;
        background: linear-gradient(135deg, #fff3cd 0%, white 100%);
    }

.newly-created-badge[b-9pmof65pwy] {
    position: absolute;
    top: -8px;
    right: 10px;
    background: #ffc107;
    color: #856404;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.condition-header[b-9pmof65pwy] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.condition-name[b-9pmof65pwy] {
    font-weight: 600;
    color: #212529;
    font-size: 1.1rem;
}

.condition-description[b-9pmof65pwy] {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.condition-flags[b-9pmof65pwy] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.form-actions[b-9pmof65pwy] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
    gap: 1rem;
}

    .form-actions .btn[b-9pmof65pwy] {
        min-width: 150px;
        height: 50px;
    }

.form-label[b-9pmof65pwy] {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #495057;
}

.form-text[b-9pmof65pwy] {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

    .form-text.text-warning[b-9pmof65pwy] {
        color: #856404 !important;
    }

textarea.form-control-lg[b-9pmof65pwy] {
    min-height: 120px;
    resize: vertical;
}

.badge[b-9pmof65pwy] {
    font-size: 0.75rem;
    padding: 0.375em 0.75em;
}





.care-plan-form-container[b-9pmof65pwy] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-section[b-9pmof65pwy] {
    margin-bottom: 2rem;
}

.form-control-lg[b-9pmof65pwy], .form-select-lg[b-9pmof65pwy] {
    height: calc(3.5rem + 2px);
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    border: 1px solid #ced4da;
    background-color: #fefcf3;
}

    .form-control-lg:focus[b-9pmof65pwy], .form-select-lg:focus[b-9pmof65pwy] {
        border-color: #86b7fe;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        background-color: white;
    }

.date-input-wrapper[b-9pmof65pwy] {
    position: relative;
}

.date-icon[b-9pmof65pwy] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
    z-index: 5;
}

.condition-actions[b-9pmof65pwy] {
    padding: 1rem 0;
    border-top: 1px solid #e9ecef;
}

.form-actions[b-9pmof65pwy] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
    gap: 1rem;
}

    .form-actions .btn[b-9pmof65pwy] {
        min-width: 150px;
        height: 50px;
    }

.form-label[b-9pmof65pwy] {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #495057;
}

.form-text[b-9pmof65pwy] {
    font-size: 0.875rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

    .form-text.text-warning[b-9pmof65pwy] {
        color: #856404 !important;
    }

textarea.form-control-lg[b-9pmof65pwy] {
    min-height: 120px;
    resize: vertical;
}
/* /Pages/ClientFiles/ClientData/Expand/Components/Details/ClientConditionComponentDetails.razor.rz.scp.css */
.condition-form-container[b-vcgb6sh81b] {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-section[b-vcgb6sh81b] {
    margin-bottom: 2rem;
}


.condition-selector[b-vcgb6sh81b] {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
}

.available-conditions[b-vcgb6sh81b] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.condition-item[b-vcgb6sh81b] {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

    .condition-item:hover[b-vcgb6sh81b] {
        border-color: #0d6efd;
        background-color: #f8f9fa;
    }

    .condition-item.selected[b-vcgb6sh81b] {
        border-color: #0d6efd;
        background-color: #e7f1ff;
    }

.condition-checkbox[b-vcgb6sh81b] {
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.condition-details[b-vcgb6sh81b] {
    flex: 1;
}

.condition-name[b-vcgb6sh81b] {
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.25rem;
}

.condition-description[b-vcgb6sh81b] {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.condition-flags[b-vcgb6sh81b] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.no-conditions[b-vcgb6sh81b] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
    text-align: center;
}

.selected-conditions-summary[b-vcgb6sh81b] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
}

.selected-list[b-vcgb6sh81b] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.selected-condition-item[b-vcgb6sh81b] {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
}

.form-actions[b-vcgb6sh81b] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
}

    .form-actions .btn[b-vcgb6sh81b] {
        min-width: 150px;
    }

.condition-category-name[b-vcgb6sh81b] {
    font-weight: 600;
    color: #212529;
    font-size: 1.1rem;
}
/* /Pages/ClientFiles/ClientData/Expand/Components/Details/ClientConditionComponentEdit.razor.rz.scp.css */
.condition-form-container[b-ig5z1bbwsx] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-section[b-ig5z1bbwsx] {
    margin-bottom: 2rem;
}


.condition-selector[b-ig5z1bbwsx] {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
}

.available-conditions[b-ig5z1bbwsx] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.condition-item[b-ig5z1bbwsx] {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

    .condition-item:hover[b-ig5z1bbwsx] {
        border-color: #0d6efd;
        background-color: #f8f9fa;
    }

    .condition-item.selected[b-ig5z1bbwsx] {
        border-color: #0d6efd;
        background-color: #e7f1ff;
    }

.condition-checkbox[b-ig5z1bbwsx] {
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.condition-details[b-ig5z1bbwsx] {
    flex: 1;
}

.condition-name[b-ig5z1bbwsx] {
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.25rem;
}

.condition-description[b-ig5z1bbwsx] {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.condition-flags[b-ig5z1bbwsx] {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.no-conditions[b-ig5z1bbwsx] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
    text-align: center;
}

.selected-conditions-summary[b-ig5z1bbwsx] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1rem;
}

.selected-list[b-ig5z1bbwsx] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.selected-condition-item[b-ig5z1bbwsx] {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
}

.form-actions[b-ig5z1bbwsx] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
}

    .form-actions .btn[b-ig5z1bbwsx] {
        min-width: 150px;
    }


.form-control-lg[b-ig5z1bbwsx], .form-select-lg[b-ig5z1bbwsx] {
    height: calc(3.5rem + 2px);
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    border: 1px solid #ced4da;
    background-color: #fefcf3;
}

    .form-control-lg:focus[b-ig5z1bbwsx], .form-select-lg:focus[b-ig5z1bbwsx] {
        border-color: #86b7fe;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        background-color: white;
    }
/* /Pages/ClientFiles/ClientData/Expand/Components/Details/DocumentComponentDetails.razor.rz.scp.css */
.measurement-container[b-9xjjclf7o3] {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.measurement-table-container[b-9xjjclf7o3] {
    overflow-x: auto;
}

.header[b-9xjjclf7o3] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left[b-9xjjclf7o3] {
    color: #40614E;
}

.client-header[b-9xjjclf7o3] {
    background: white;
    border: 1px solid #40614E;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.client-info[b-9xjjclf7o3] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar[b-9xjjclf7o3] {
    font-size: 3rem;
    color: #6c757d;
}

.client-details[b-9xjjclf7o3] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.client-name[b-9xjjclf7o3] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #40614E;
}

.client-ids[b-9xjjclf7o3] {
    display: flex;
    gap: 1.5rem;
    font-size: 1rem;
    color: #40614E;
}

    .client-ids span[b-9xjjclf7o3] {
        white-space: nowrap;
    }

/*.medication-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}*/
.status-badge[b-9xjjclf7o3] {
    height: 16px;
    width: 16px;
}

.measurement-title[b-9xjjclf7o3] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.section-title[b-9xjjclf7o3] {
    font-size: 1rem;
    font-weight: 500;
    color: #495057;
    margin-bottom: 1rem;
}

.no-data-text[b-9xjjclf7o3] {
    color: #6c757d;
    font-style: italic;
    font-size: 0.9rem;
}

.filter-section[b-9xjjclf7o3] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end
}

.measurement-table[b-9xjjclf7o3] {
    margin-bottom: 0;
    border-collapse: collapse;
    width: 100%;
}

    .measurement-table thead th[b-9xjjclf7o3] {
        background-color: #f8f9fa;
        border: 1px solid #dee2e6;
        padding: 0.75rem;
        font-weight: 600;
        color: #495057;
        text-align: center;
        vertical-align: middle;
        font-size: 0.9rem;
    }

    .measurement-table tbody td[b-9xjjclf7o3] {
        border: 1px solid #dee2e6;
        padding: 0.75rem;
        vertical-align: middle;
        font-size: 0.9rem;
    }

.measurement-name[b-9xjjclf7o3] {
    font-weight: 500;
    color: #212529;
    text-align: left;
}

.measurement-row:hover[b-9xjjclf7o3] {
    background-color: #f8f9fa;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .measurement-container[b-9xjjclf7o3] {
        padding: 1rem;
        margin: 0.5rem;
        border-radius: 6px;
    }

    .measurement-title[b-9xjjclf7o3] {
        font-size: 1rem;
    }

    .section-title[b-9xjjclf7o3] {
        font-size: 0.9rem;
    }

    .measurement-table[b-9xjjclf7o3] {
        font-size: 0.8rem;
    }

        .measurement-table thead th[b-9xjjclf7o3],
        .measurement-table tbody td[b-9xjjclf7o3] {
            padding: 0.5rem;
        }

    .dosage-header[b-9xjjclf7o3] {
        width: 50px;
    }
}

/* Tablet adjustments */
@media (max-width: 992px) and (min-width: 769px) {
    .measurement-container[b-9xjjclf7o3] {
        padding: 1.25rem;
    }
}

/* Small phone adjustments */
@media (max-width: 480px) {
    .measurement-container[b-9xjjclf7o3] {
        margin: 0.25rem;
        padding: 0.75rem;
    }

    .measurement-header[b-9xjjclf7o3] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .measurement-table[b-9xjjclf7o3] {
        font-size: 0.75rem;
    }

        .measurement-table thead th[b-9xjjclf7o3],
        .measurement-table tbody td[b-9xjjclf7o3] {
            padding: 0.4rem;
        }

    .dosage-header[b-9xjjclf7o3] {
        width: 40px;
    }
}
/* /Pages/ClientFiles/ClientData/Expand/Components/Details/EventsComponentDetails.razor.rz.scp.css */
.measurement-container[b-9ome88sbdl] {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.measurement-table-container[b-9ome88sbdl] {
    overflow-x: auto;
}

.header[b-9ome88sbdl] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left[b-9ome88sbdl] {
    color: #40614E;
}

.client-header[b-9ome88sbdl] {
    background: white;
    border: 1px solid #40614E;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.client-info[b-9ome88sbdl] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar[b-9ome88sbdl] {
    font-size: 3rem;
    color: #6c757d;
}

.client-details[b-9ome88sbdl] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.client-name[b-9ome88sbdl] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #40614E;
}

.client-ids[b-9ome88sbdl] {
    display: flex;
    gap: 1.5rem;
    font-size: 1rem;
    color: #40614E;
}

    .client-ids span[b-9ome88sbdl] {
        white-space: nowrap;
    }

/*.medication-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}*/
.status-badge[b-9ome88sbdl] {
    height: 16px;
    width: 16px;
}

.measurement-title[b-9ome88sbdl] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.section-title[b-9ome88sbdl] {
    font-size: 1rem;
    font-weight: 500;
    color: #495057;
    margin-bottom: 1rem;
}

.no-data-text[b-9ome88sbdl] {
    color: #6c757d;
    font-style: italic;
    font-size: 0.9rem;
}

.filter-section[b-9ome88sbdl] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end
}

.measurement-table[b-9ome88sbdl] {
    margin-bottom: 0;
    border-collapse: collapse;
    width: 100%;
}

    .measurement-table thead th[b-9ome88sbdl] {
        background-color: #f8f9fa;
        border: 1px solid #dee2e6;
        padding: 0.75rem;
        font-weight: 600;
        color: #495057;
        text-align: center;
        vertical-align: middle;
        font-size: 0.9rem;
    }

    .measurement-table tbody td[b-9ome88sbdl] {
        border: 1px solid #dee2e6;
        padding: 0.75rem;
        vertical-align: middle;
        font-size: 0.9rem;
    }

.measurement-name[b-9ome88sbdl] {
    font-weight: 500;
    color: #212529;
    text-align: left;
}

.measurement-row:hover[b-9ome88sbdl] {
    background-color: #f8f9fa;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .measurement-container[b-9ome88sbdl] {
        padding: 1rem;
        margin: 0.5rem;
        border-radius: 6px;
    }

    .measurement-title[b-9ome88sbdl] {
        font-size: 1rem;
    }

    .section-title[b-9ome88sbdl] {
        font-size: 0.9rem;
    }

    .measurement-table[b-9ome88sbdl] {
        font-size: 0.8rem;
    }

        .measurement-table thead th[b-9ome88sbdl],
        .measurement-table tbody td[b-9ome88sbdl] {
            padding: 0.5rem;
        }

    .dosage-header[b-9ome88sbdl] {
        width: 50px;
    }
}

/* Tablet adjustments */
@media (max-width: 992px) and (min-width: 769px) {
    .measurement-container[b-9ome88sbdl] {
        padding: 1.25rem;
    }
}

/* Small phone adjustments */
@media (max-width: 480px) {
    .measurement-container[b-9ome88sbdl] {
        margin: 0.25rem;
        padding: 0.75rem;
    }

    .measurement-header[b-9ome88sbdl] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .measurement-table[b-9ome88sbdl] {
        font-size: 0.75rem;
    }

        .measurement-table thead th[b-9ome88sbdl],
        .measurement-table tbody td[b-9ome88sbdl] {
            padding: 0.4rem;
        }

    .dosage-header[b-9ome88sbdl] {
        width: 40px;
    }
}
/* /Pages/ClientFiles/ClientData/Expand/Components/Details/InventoriesComponentDetails.razor.rz.scp.css */
.measurement-container[b-v9o55lkrn0] {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.measurement-table-container[b-v9o55lkrn0] {
    overflow-x: auto;
}

.header[b-v9o55lkrn0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left[b-v9o55lkrn0] {
    color: #40614E;
}

.client-header[b-v9o55lkrn0] {
    background: white;
    border: 1px solid #40614E;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.client-info[b-v9o55lkrn0] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar[b-v9o55lkrn0] {
    font-size: 3rem;
    color: #6c757d;
}

.client-details[b-v9o55lkrn0] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.client-name[b-v9o55lkrn0] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #40614E;
}

.client-ids[b-v9o55lkrn0] {
    display: flex;
    gap: 1.5rem;
    font-size: 1rem;
    color: #40614E;
}

    .client-ids span[b-v9o55lkrn0] {
        white-space: nowrap;
    }

/*.medication-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}*/
.status-badge[b-v9o55lkrn0] {
    height: 16px;
    width: 16px;
}

.measurement-title[b-v9o55lkrn0] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.section-title[b-v9o55lkrn0] {
    font-size: 1rem;
    font-weight: 500;
    color: #495057;
    margin-bottom: 1rem;
}

.no-data-text[b-v9o55lkrn0] {
    color: #6c757d;
    font-style: italic;
    font-size: 0.9rem;
}

.filter-section[b-v9o55lkrn0] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end
}

.measurement-table[b-v9o55lkrn0] {
    margin-bottom: 0;
    border-collapse: collapse;
    width: 100%;
}

    .measurement-table thead th[b-v9o55lkrn0] {
        background-color: #f8f9fa;
        border: 1px solid #dee2e6;
        padding: 0.75rem;
        font-weight: 600;
        color: #495057;
        text-align: center;
        vertical-align: middle;
        font-size: 0.9rem;
    }

    .measurement-table tbody td[b-v9o55lkrn0] {
        border: 1px solid #dee2e6;
        padding: 0.75rem;
        vertical-align: middle;
        font-size: 0.9rem;
    }

.measurement-name[b-v9o55lkrn0] {
    font-weight: 500;
    color: #212529;
    text-align: left;
}

.measurement-row:hover[b-v9o55lkrn0] {
    background-color: #f8f9fa;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .measurement-container[b-v9o55lkrn0] {
        padding: 1rem;
        margin: 0.5rem;
        border-radius: 6px;
    }

    .measurement-title[b-v9o55lkrn0] {
        font-size: 1rem;
    }

    .section-title[b-v9o55lkrn0] {
        font-size: 0.9rem;
    }

    .measurement-table[b-v9o55lkrn0] {
        font-size: 0.8rem;
    }

        .measurement-table thead th[b-v9o55lkrn0],
        .measurement-table tbody td[b-v9o55lkrn0] {
            padding: 0.5rem;
        }

    .dosage-header[b-v9o55lkrn0] {
        width: 50px;
    }
}

/* Tablet adjustments */
@media (max-width: 992px) and (min-width: 769px) {
    .measurement-container[b-v9o55lkrn0] {
        padding: 1.25rem;
    }
}

/* Small phone adjustments */
@media (max-width: 480px) {
    .measurement-container[b-v9o55lkrn0] {
        margin: 0.25rem;
        padding: 0.75rem;
    }

    .measurement-header[b-v9o55lkrn0] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .measurement-table[b-v9o55lkrn0] {
        font-size: 0.75rem;
    }

        .measurement-table thead th[b-v9o55lkrn0],
        .measurement-table tbody td[b-v9o55lkrn0] {
            padding: 0.4rem;
        }

    .dosage-header[b-v9o55lkrn0] {
        width: 40px;
    }
}
/* /Pages/ClientFiles/ClientData/Expand/Components/Details/MeasurementsComponentDetails.razor.rz.scp.css */
.measurement-container[b-x6dnf7niim] {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.header[b-x6dnf7niim] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left[b-x6dnf7niim] {
    color: #40614E;
}

/*.medication-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e9ecef;
}*/
.status-badge[b-x6dnf7niim]{
height:16px;
width: 16px;
}

.measurement-title[b-x6dnf7niim] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.section-title[b-x6dnf7niim] {
    font-size: 1rem;
    font-weight: 500;
    color: #495057;
    margin-bottom: 1rem;
}

.no-data-text[b-x6dnf7niim] {
    color: #6c757d;
    font-style: italic;
    font-size: 0.9rem;
}

.filter-section[b-x6dnf7niim] {
    display: flex;
    justify-content: space-between;
    align-items: flex-end
}

.measurement-table-container[b-x6dnf7niim] {
    overflow-x: auto;
}

.measurement-table[b-x6dnf7niim] {
    margin-bottom: 0;
    border-collapse: collapse;
    width: 100%;
    min-width: 500px;
}

    .measurement-table thead th[b-x6dnf7niim] {
        background-color: #f8f9fa;
        border: 1px solid #dee2e6;
        padding: 0.75rem;
        font-weight: 600;
        color: #495057;
        text-align: center;
        vertical-align: middle;
        font-size: 0.9rem;
    }

.measurement-table tbody td[b-x6dnf7niim] {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    vertical-align: middle;
    font-size: 0.9rem;
}

.measurement-name[b-x6dnf7niim] {
    font-weight: 500;
    color: #212529;
    text-align: left;
}

.measurement-row:hover[b-x6dnf7niim] {
    background-color: #f8f9fa;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .measurement-container[b-x6dnf7niim] {
        padding: 1rem;
        margin: 0.5rem;
        border-radius: 6px;
    }

    .measurement-title[b-x6dnf7niim] {
        font-size: 1rem;
    }

    .section-title[b-x6dnf7niim] {
        font-size: 0.9rem;
    }

    .measurement-table[b-x6dnf7niim] {
        min-width: 400px;
        font-size: 0.8rem;
    }

        .measurement-table thead th[b-x6dnf7niim],
        .measurement-table tbody td[b-x6dnf7niim] {
            padding: 0.5rem;
        }

    .measurement-name-header[b-x6dnf7niim] {
        min-width: 150px;
    }

    .dosage-header[b-x6dnf7niim] {
        width: 50px;
        min-width: 50px;
    }
}

/* Tablet adjustments */
@media (max-width: 992px) and (min-width: 769px) {
    .measurement-container[b-x6dnf7niim] {
        padding: 1.25rem;
    }
}

/* Small phone adjustments */
@media (max-width: 480px) {
    .measurement-container[b-x6dnf7niim] {
        margin: 0.25rem;
        padding: 0.75rem;
    }

    .measurement-header[b-x6dnf7niim] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .measurement-table[b-x6dnf7niim] {
        min-width: 350px;
        font-size: 0.75rem;
    }

        .measurement-table thead th[b-x6dnf7niim],
        .measurement-table tbody td[b-x6dnf7niim] {
            padding: 0.4rem;
        }

    .measurement-name-header[b-x6dnf7niim] {
        min-width: 120px;
    }

    .dosage-header[b-x6dnf7niim] {
        width: 40px;
        min-width: 40px;
    }
}

/* /Pages/ClientFiles/ClientData/Expand/Components/Details/MedicationComponentDetails.razor.rz.scp.css */
.medication-form-container[b-xaserr0uug] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.medicine-selector[b-xaserr0uug] {
    position: relative;
}

.medicine-sensitivity-note[b-xaserr0uug] {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    font-size: 0.9rem;
    pointer-events: none;
}

.dosage-section[b-xaserr0uug] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
}

.dosage-input[b-xaserr0uug] {
    background-color: #fefcf3;
    border: 1px solid #ced4da;
    height: calc(2.5rem + 2px);
    text-align: center;
    font-weight: 600;
}

    .dosage-input:focus[b-xaserr0uug] {
        background-color: white;
        border-color: #86b7fe;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }

.form-control-lg[b-xaserr0uug], .form-select-lg[b-xaserr0uug] {
    height: calc(3.5rem + 2px);
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    border: 1px solid #ced4da;
    background-color: #fefcf3;
}

    .form-control-lg:focus[b-xaserr0uug], .form-select-lg:focus[b-xaserr0uug] {
        border-color: #86b7fe;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
        background-color: white;
    }

.date-input-wrapper[b-xaserr0uug] {
    position: relative;
}

.date-icon[b-xaserr0uug] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: none;
    z-index: 5;
}

.form-actions[b-xaserr0uug] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
}

    .form-actions .btn[b-xaserr0uug] {
        min-width: 150px;
        height: 50px;
    }

.medication-table[b-xaserr0uug] {
    margin-bottom: 0;
}

.medication-row[b-xaserr0uug] {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .medication-row:hover[b-xaserr0uug] {
        background-color: #f8f9fa;
    }

.medication-name-header[b-xaserr0uug] {
    width: 25%;
    font-weight: 600;
    color: #495057;
    padding: 1rem;
    background-color: #f8f9fa;
    vertical-align: middle;
    align-items: center;
}

.dosage-header[b-xaserr0uug] {
    width: 10%;
    font-weight: 600;
    color: #495057;
    text-align: center;
    vertical-align: middle;
    align-items: center;
    padding: 1rem;
    background-color: #f8f9fa;
}

.medication-name[b-xaserr0uug] {
    padding: 1rem;
    font-weight: 500;
}

.medicine-name[b-xaserr0uug] {
    font-size: 1rem;
    color: #212529;
}

.client-sensitivity[b-xaserr0uug] {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.form-label[b-xaserr0uug] {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #495057;
}

textarea.form-control-lg[b-xaserr0uug] {
    min-height: 120px;
    resize: vertical;
}





.allergy-section .alert[b-xaserr0uug] {
    border-left: 4px solid #dc3545;
}

.allergy-list .badge[b-xaserr0uug] {
    font-size: 0.875em;
}

.medication-row.table-warning[b-xaserr0uug] {
    background-color: rgba(255, 193, 7, 0.1) !important;
}

.dosage-value[b-xaserr0uug] {
    font-weight: 500;
}

.medicine-name[b-xaserr0uug] {
    font-weight: 500;
}

.summary-card[b-xaserr0uug] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 1rem;
    text-align: center;
}

.summary-number[b-xaserr0uug] {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.summary-label[b-xaserr0uug] {
    color: #6c757d;
    font-size: 0.875rem;
}

/* Mobile-friendly dosage inputs */
.dosage-input[b-xaserr0uug] {
    width: 80px;
    text-align: center;
}

    .dosage-input:focus[b-xaserr0uug] {
        border-color: #0d6efd;
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    }

/* Improve mobile touch targets */
@media (max-width: 768px) {
    .dosage-input[b-xaserr0uug] {
        width: 60px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .btn-sm[b-xaserr0uug] {
        padding: 0.375rem 0.75rem;
    }

    .medication-table[b-xaserr0uug] {
        font-size: 0.9rem;
    }
}
/* /Pages/ClientFiles/ClientData/Expand/Components/DocumentsComponent.razor.rz.scp.css */
.table-responsive[b-g3ybpdbtxi] {
    border-radius: 10px;
    border: 1px solid #40614E;
}

.table-header[b-g3ybpdbtxi] {
    color: #40614E;
}
/* /Pages/ClientFiles/ClientData/Expand/Components/EventsComponent.razor.rz.scp.css */
/* Expandable Section */

.section-actions[b-668emfsiyc] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon[b-668emfsiyc] {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

    .btn-icon:hover[b-668emfsiyc] {
        background: #e9ecef;
        color: #495057;
    }

.expand-icon[b-668emfsiyc] {
    transition: transform 0.2s ease;
}

    .expand-icon.expanded[b-668emfsiyc] {
        transform: rotate(180deg);
    }

.section-content[b-668emfsiyc] {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid #f8f9fa;
    background: #fdfdfd;
}

/* Event Items */
.events-list[b-668emfsiyc], .measurements-list[b-668emfsiyc], .medications-list[b-668emfsiyc],
.condition-list[b-668emfsiyc], .care-needs-list[b-668emfsiyc], .accommodation-list[b-668emfsiyc],
.documents-list[b-668emfsiyc] {
    padding: 1rem 0;
}

.event-item[b-668emfsiyc] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    background: white;
}

    .event-item:last-child[b-668emfsiyc] {
        margin-bottom: 0;
    }

.event-content[b-668emfsiyc] {
    flex: 1;
    min-width: 0;
}

.event-title[b-668emfsiyc] {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #212529;
    line-height: 1.4;
}

.event-description[b-668emfsiyc] {
    margin: 0;
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.4;
}

.event-date[b-668emfsiyc] {
    flex-shrink: 0;
    margin-left: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #dc3545;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .client-container[b-668emfsiyc] {
        padding: 0.75rem;
    }

    .client-header[b-668emfsiyc] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }

    .client-info[b-668emfsiyc] {
        width: 100%;
    }

    .client-ids[b-668emfsiyc] {
        flex-direction: column;
        gap: 0.25rem;
    }

    .action-buttons[b-668emfsiyc] {
        flex-direction: column;
    }

    .btn[b-668emfsiyc] {
        justify-content: center;
    }

    .section-header[b-668emfsiyc] {
        padding: 0.75rem 1rem;
    }

    .section-content[b-668emfsiyc] {
        padding: 0 1rem 1rem;
    }

    .event-item[b-668emfsiyc] {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .event-date[b-668emfsiyc] {
        margin-left: 0;
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .client-avatar[b-668emfsiyc] {
        font-size: 2rem;
    }

    .client-name[b-668emfsiyc] {
        font-size: 1.25rem;
    }

    .client-ids[b-668emfsiyc] {
        font-size: 0.8rem;
    }

    .section-actions[b-668emfsiyc] {
        gap: 0.25rem;
    }

    .btn-icon[b-668emfsiyc] {
        padding: 0.375rem;
        font-size: 0.8rem;
    }
}

/* Print Styles */
@media print {
    .client-container[b-668emfsiyc] {
        max-width: none;
        padding: 0;
    }

    .action-buttons[b-668emfsiyc] {
        display: none;
    }

    .section-actions[b-668emfsiyc] {
        display: none;
    }

    .section-header[b-668emfsiyc] {
        cursor: default;
    }

    .section-content[b-668emfsiyc] {
        display: block !important;
        background: white;
        border: none;
        padding: 1rem 0;
    }

    .event-item[b-668emfsiyc] {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
/* /Pages/ClientFiles/ClientData/Expand/Components/InventoriesComponent.razor.rz.scp.css */
.table-responsive[b-jeym10v4v8] {
    border-radius: 10px;
    border: 1px solid #40614E;
}

.table-header[b-jeym10v4v8] {
    color: #40614E;
}
/* /Pages/ClientFiles/ClientData/Expand/Components/MeasurementsComponent.razor.rz.scp.css */
.medication-container[b-h4wzlsh7di] {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.status-badge[b-h4wzlsh7di]{
height:16px;
width: 16px;
}

.medication-title[b-h4wzlsh7di] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.section-title[b-h4wzlsh7di] {
    font-size: 1rem;
    font-weight: 500;
    color: #495057;
    margin-bottom: 1rem;
}

.no-data-text[b-h4wzlsh7di] {
    color: #6c757d;
    font-style: italic;
    font-size: 0.9rem;
}

.medication-table-container[b-h4wzlsh7di] {
    overflow-x: auto;
}

.medication-table[b-h4wzlsh7di] {
    margin-bottom: 0;
    border-collapse: collapse;
    width: 100%;
    min-width: 500px;
}

    .medication-table thead th[b-h4wzlsh7di] {
        background-color: #f8f9fa;
        border: 1px solid #dee2e6;
        padding: 0.75rem;
        font-weight: 600;
        color: #495057;
        text-align: center;
        vertical-align: middle;
        font-size: 0.9rem;
    }

.medication-table tbody td[b-h4wzlsh7di] {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    vertical-align: middle;
    font-size: 0.9rem;
}

.medication-name[b-h4wzlsh7di] {
    font-weight: 500;
    color: #212529;
    text-align: left;
}

.medication-row:hover[b-h4wzlsh7di] {
    background-color: #f8f9fa;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .medication-container[b-h4wzlsh7di] {
        padding: 1rem;
        margin: 0.5rem;
        border-radius: 6px;
    }

    .medication-title[b-h4wzlsh7di] {
        font-size: 1rem;
    }

    .section-title[b-h4wzlsh7di] {
        font-size: 0.9rem;
    }

    .medication-table[b-h4wzlsh7di] {
        min-width: 400px;
        font-size: 0.8rem;
    }

        .medication-table thead th[b-h4wzlsh7di],
        .medication-table tbody td[b-h4wzlsh7di] {
            padding: 0.5rem;
        }

    .medication-name-header[b-h4wzlsh7di] {
        min-width: 150px;
    }

    .dosage-header[b-h4wzlsh7di] {
        width: 50px;
        min-width: 50px;
    }
}

/* Tablet adjustments */
@media (max-width: 992px) and (min-width: 769px) {
    .medication-container[b-h4wzlsh7di] {
        padding: 1.25rem;
    }
}

/* Small phone adjustments */
@media (max-width: 480px) {
    .medication-container[b-h4wzlsh7di] {
        margin: 0.25rem;
        padding: 0.75rem;
    }

    .medication-header[b-h4wzlsh7di] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .medication-table[b-h4wzlsh7di] {
        min-width: 350px;
        font-size: 0.75rem;
    }

        .medication-table thead th[b-h4wzlsh7di],
        .medication-table tbody td[b-h4wzlsh7di] {
            padding: 0.4rem;
        }

    .medication-name-header[b-h4wzlsh7di] {
        min-width: 120px;
    }

    .dosage-header[b-h4wzlsh7di] {
        width: 40px;
        min-width: 40px;
    }
}
/* /Pages/ClientFiles/ClientData/Expand/Components/MedicationComponent.razor.rz.scp.css */
.medication-container[b-jjl88o7jqd] {
    background: #fff;

    margin-bottom: 1rem;
}

.allergy-badge[b-jjl88o7jqd]{
    color: red;
}

.medication-header[b-jjl88o7jqd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-bottom: 0.5rem;

}

.medication-title[b-jjl88o7jqd] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
}

.section-title[b-jjl88o7jqd] {
    font-size: 1rem;
    font-weight: 500;
    color: #495057;
    margin-bottom: 1rem;
}

.no-data-text[b-jjl88o7jqd] {
    color: #6c757d;
    font-style: italic;
    font-size: 0.9rem;
}

.medication-table-container[b-jjl88o7jqd] {
    overflow-x: auto;
}

.medication-table[b-jjl88o7jqd] {
    margin-bottom: 0;
    border-collapse: collapse;
    width: 100%;
    min-width: 500px;
}

    .medication-table thead th[b-jjl88o7jqd] {
        background-color: #f8f9fa;
        border: 1px solid #dee2e6;
        padding: 0.75rem;
        font-weight: 600;
        color: #495057;
        text-align: center;
        vertical-align: middle;
        font-size: 0.9rem;
    }

.medication-name-header[b-jjl88o7jqd] {
    text-align: left !important;
    min-width: 200px;
}

.dosage-header[b-jjl88o7jqd] {
    width: 60px;
    min-width: 60px;
}

.medication-table tbody td[b-jjl88o7jqd] {
    border: 1px solid #dee2e6;
    padding: 0.75rem;
    vertical-align: middle;
    font-size: 0.9rem;
}

.medication-name[b-jjl88o7jqd] {
    font-weight: 500;
    color: #212529;
    text-align: left;
}

.medication-row:hover[b-jjl88o7jqd] {
    background-color: #f8f9fa;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .medication-container[b-jjl88o7jqd] {
        padding: 1rem;
        margin: 0.5rem;
        border-radius: 6px;
    }

    .medication-title[b-jjl88o7jqd] {
        font-size: 1rem;
    }

    .section-title[b-jjl88o7jqd] {
        font-size: 0.9rem;
    }

    .medication-table[b-jjl88o7jqd] {
        min-width: 400px;
        font-size: 0.8rem;
    }

        .medication-table thead th[b-jjl88o7jqd],
        .medication-table tbody td[b-jjl88o7jqd] {
            padding: 0.5rem;
        }

    .medication-name-header[b-jjl88o7jqd] {
        min-width: 150px;
    }

    .dosage-header[b-jjl88o7jqd] {
        width: 50px;
        min-width: 50px;
    }
}

/* Tablet adjustments */
@media (max-width: 992px) and (min-width: 769px) {
    .medication-container[b-jjl88o7jqd] {
        padding: 1.25rem;
    }
}

/* Small phone adjustments */
@media (max-width: 480px) {
    .medication-container[b-jjl88o7jqd] {
        margin: 0.25rem;
        padding: 0.75rem;
    }

    .medication-header[b-jjl88o7jqd] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .medication-table[b-jjl88o7jqd] {
        min-width: 350px;
        font-size: 0.75rem;
    }

        .medication-table thead th[b-jjl88o7jqd],
        .medication-table tbody td[b-jjl88o7jqd] {
            padding: 0.4rem;
        }

    .medication-name-header[b-jjl88o7jqd] {
        min-width: 120px;
    }

    .dosage-header[b-jjl88o7jqd] {
        width: 40px;
        min-width: 40px;
    }
}
/* /Pages/ClientFiles/ClientData/Expand/ExpandableSection.razor.rz.scp.css */
/* Client Data Component Styles */
.client-container[b-cvgct62cwo] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Client Header */
.client-header[b-cvgct62cwo] {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.client-info[b-cvgct62cwo] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.client-avatar[b-cvgct62cwo] {
    font-size: 3rem;
    color: #6c757d;
}

.client-details[b-cvgct62cwo] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.client-name[b-cvgct62cwo] {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
}

.client-ids[b-cvgct62cwo] {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

    .client-ids span[b-cvgct62cwo] {
        white-space: nowrap;
    }

.client-status[b-cvgct62cwo] {
    flex-shrink: 0;
}

.status-badge[b-cvgct62cwo] {
    background: #fff3cd;
    color: #856404;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #ffeaa7;
}

.status-otthonban[b-cvgct62cwo] {
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

/* Action Buttons */
.action-buttons[b-cvgct62cwo] {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn[b-cvgct62cwo] {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary[b-cvgct62cwo] {
    background: #4D6F66;
    color: white;
}

    .btn-primary:hover[b-cvgct62cwo] {
        background: #0056b3;
        border:1px solid #4D6F66;
    }

.btn-outline-primary[b-cvgct62cwo] {
    color: #4D6F66;
    border-color: #4D6F66;
    background: transparent;
}

    .btn-outline-primary:hover[b-cvgct62cwo] {
        background: #007bff;
        color: white;
    }

.btn-outline-secondary[b-cvgct62cwo] {
    color: #6c757d;
    border-color: #6c757d;
    background: transparent;
}

    .btn-outline-secondary:hover[b-cvgct62cwo] {
        background: #6c757d;
        color: white;
    }



/* Expandable Section */
.expandable-section[b-cvgct62cwo] {
    border: 1px solid #40614E;
    border-radius: 10px;
    margin-bottom: 20px;
}


.section-header[b-cvgct62cwo] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    user-select: none;
    border-radius: 10px;
}

    .section-header:hover[b-cvgct62cwo] {
        background: #f8f9fa;
    }

    .section-header .section-title[b-cvgct62cwo] {
        background: none;
        padding: 0;
        margin: 0;
        border: none;
        font-size: 1rem;
        color: #4D6F66;
        font-weight:600;
    }

.section-actions[b-cvgct62cwo] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon[b-cvgct62cwo] {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

    .btn-icon:hover[b-cvgct62cwo] {
        background: #e9ecef;
        color: #495057;
    }

.expand-icon[b-cvgct62cwo] {
    transition: transform 0.2s ease;
}

    .expand-icon.expanded[b-cvgct62cwo] {
        transform: rotate(180deg);
    }

.section-content[b-cvgct62cwo] {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid #f8f9fa;
    background: #fdfdfd;
    border-radius: 10px;
}

/* Event Items */
.events-list[b-cvgct62cwo], .measurements-list[b-cvgct62cwo], .medications-list[b-cvgct62cwo],
.condition-list[b-cvgct62cwo], .care-needs-list[b-cvgct62cwo], .accommodation-list[b-cvgct62cwo],
.documents-list[b-cvgct62cwo] {
    padding: 1rem 0;
}

.event-item[b-cvgct62cwo] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    margin-bottom: 0.75rem;
    background: white;
    transition: box-shadow 0.2s ease;
}

    .event-item:hover[b-cvgct62cwo] {
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .event-item:last-child[b-cvgct62cwo] {
        margin-bottom: 0;
    }

.event-content[b-cvgct62cwo] {
    flex: 1;
    min-width: 0;
}

.event-title[b-cvgct62cwo] {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #212529;
    line-height: 1.4;
}

.event-description[b-cvgct62cwo] {
    margin: 0;
    font-size: 0.875rem;
    color: #6c757d;
    line-height: 1.4;
}

.event-date[b-cvgct62cwo] {
    flex-shrink: 0;
    margin-left: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #dc3545;
    white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .client-container[b-cvgct62cwo] {
        padding: 0.75rem;
    }

    .client-header[b-cvgct62cwo] {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }

    .client-info[b-cvgct62cwo] {
        width: 100%;
    }

    .client-ids[b-cvgct62cwo] {
        flex-direction: column;
        gap: 0.25rem;
    }

    .action-buttons[b-cvgct62cwo] {
        flex-direction: column;
    }

    .btn[b-cvgct62cwo] {
        justify-content: center;
    }

    .section-header[b-cvgct62cwo] {
        padding: 0.75rem 1rem;
    }

    .section-content[b-cvgct62cwo] {
        padding: 0 1rem 1rem;
    }

    .event-item[b-cvgct62cwo] {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem;
    }

    .event-date[b-cvgct62cwo] {
        margin-left: 0;
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .client-avatar[b-cvgct62cwo] {
        font-size: 2rem;
    }

    .client-name[b-cvgct62cwo] {
        font-size: 1.25rem;
    }

    .client-ids[b-cvgct62cwo] {
        font-size: 0.8rem;
    }

    .section-actions[b-cvgct62cwo] {
        gap: 0.25rem;
    }

    .btn-icon[b-cvgct62cwo] {
        padding: 0.375rem;
        font-size: 0.8rem;
    }
}

/* Print Styles */
@media print {
    .client-container[b-cvgct62cwo] {
        max-width: none;
        padding: 0;
    }

    .action-buttons[b-cvgct62cwo] {
        display: none;
    }

    .section-actions[b-cvgct62cwo] {
        display: none;
    }

    .section-header[b-cvgct62cwo] {
        cursor: default;
    }

    .section-content[b-cvgct62cwo] {
        display: block !important;
        background: white;
        border: none;
        padding: 1rem 0;
    }

    .event-item[b-cvgct62cwo] {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
/* /Pages/ClientFiles/ClientData/Expand/LazyExpandableSection.razor.rz.scp.css */
/* LazyExpandableSection.razor.css */
/* This component inherits the base styles from ExpandableSection but adds lazy loading specific styles */

/* Base Expandable Section Styles (copied from ExpandableSection.razor.css) */
.expandable-section[b-xkdv4ug97c] {
    border: 1px solid #40614E;
    border-radius: 10px;
    margin-bottom: 20px;
}

.section-header[b-xkdv4ug97c] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    user-select: none;
    border-radius: 10px;
}

    .section-header:hover[b-xkdv4ug97c] {
        background: #f8f9fa;
    }

    .section-header .section-title[b-xkdv4ug97c] {
        background: none;
        padding: 0;
        margin: 0;
        border: none;
        font-size: 1rem;
        color: #4D6F66;
        font-weight: 600;
    }

.section-actions[b-xkdv4ug97c] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon[b-xkdv4ug97c] {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: 4px;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

    .btn-icon:hover[b-xkdv4ug97c] {
        background: #e9ecef;
        color: #495057;
    }

.expand-icon[b-xkdv4ug97c] {
    transition: transform 0.2s ease;
}

    .expand-icon.expanded[b-xkdv4ug97c] {
        transform: rotate(180deg);
    }

.section-content[b-xkdv4ug97c] {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid #f8f9fa;
    background: #fdfdfd;
    border-radius: 0 0 10px 10px;
}

/* No Data State */
.no-data[b-xkdv4ug97c] {
    text-align: center;
    padding: 2rem;
    color: #6c757d;
    font-style: italic;
}

/* Lazy Loading Specific Styles */
.section-loading[b-xkdv4ug97c] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #6c757d;
    font-size: 0.9rem;
    background: #f8f9fa;
    border-radius: 4px;
    margin: 1rem 0;
}

    .section-loading .spinner-border[b-xkdv4ug97c] {
        width: 1.2rem;
        height: 1.2rem;
        border-width: 0.1rem;
    }

.alert[b-xkdv4ug97c] {
    margin: 1rem 0;
    border-radius: 4px;
}

.alert-danger[b-xkdv4ug97c] {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

    .alert-danger i[b-xkdv4ug97c] {
        margin-right: 0.5rem;
    }

/* Fade in animation for loaded content */
.section-content > *:not(.section-loading):not(.alert)[b-xkdv4ug97c] {
    animation: fadeIn-b-xkdv4ug97c 0.3s ease-in-out;
}

@keyframes fadeIn-b-xkdv4ug97c {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading state for section header */
.section-header.loading[b-xkdv4ug97c] {
    opacity: 0.7;
}

/* Error state styling */
.section-header.error .section-title[b-xkdv4ug97c] {
    color: #dc3545;
}

/* Success state styling */
.section-header.loaded .section-title[b-xkdv4ug97c] {
    color: #28a745;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-header[b-xkdv4ug97c] {
        padding: 0.75rem 1rem;
    }

    .section-content[b-xkdv4ug97c] {
        padding: 0 1rem 1rem;
    }

    .section-loading[b-xkdv4ug97c] {
        padding: 1.5rem;
        font-size: 0.85rem;
    }

        .section-loading .spinner-border[b-xkdv4ug97c] {
            width: 1rem;
            height: 1rem;
        }
}

@media (max-width: 480px) {
    .section-actions[b-xkdv4ug97c] {
        gap: 0.25rem;
    }

    .btn-icon[b-xkdv4ug97c] {
        padding: 0.375rem;
        font-size: 0.8rem;
    }
}

/* Print Styles */
@media print {
    .section-actions[b-xkdv4ug97c] {
        display: none;
    }

    .section-header[b-xkdv4ug97c] {
        cursor: default;
    }

    .section-content[b-xkdv4ug97c] {
        display: block !important;
        background: white;
        border: none;
        padding: 1rem 0;
    }
}
/* /Pages/ClientFiles/ClientRecords.razor.rz.scp.css */
.client-records-container[b-x5fyzlmx93] {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.table-container[b-x5fyzlmx93] {
    max-height: 60vh;
}

.header[b-x5fyzlmx93] {
    margin-bottom: 30px;
}

.title[b-x5fyzlmx93] {
    font-size: 24px;
    font-weight: 600;
    color: #40614E;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stats-section[b-x5fyzlmx93] {
    margin-bottom: 30px;
    border: solid 1px #40614E;
    border-radius: 10px;
}

.stats-cards[b-x5fyzlmx93] {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.stat-card[b-x5fyzlmx93] {
    background: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    text-align: center;
    min-width: 100px;
    transition: all 0.2s ease;
}


.stat-label[b-x5fyzlmx93] {
    font-size: 16px;
    color: #40614E;
    margin-bottom: 5px;
}

.stat-value[b-x5fyzlmx93] {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.search-filter-section[b-x5fyzlmx93] {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.search-box[b-x5fyzlmx93] {
    flex: 1;
    max-width: 600px;
}

.search-input[b-x5fyzlmx93] {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #40614E;
    border-radius: 8px;
    font-size: 16px;
    color: #40614E;
    transition: border-color 0.2s ease;
}

    .search-input:focus[b-x5fyzlmx93] {
        outline: none;
        border-color: #FFC20F;
    }

.filter-checkbox[b-x5fyzlmx93] {
    display: flex;
    align-items: center;
}

    .filter-checkbox label[b-x5fyzlmx93] {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 16px;
        font-weight: 600;
        color: #40614E;
        cursor: pointer;
    }

    .filter-checkbox input[type="checkbox"][b-x5fyzlmx93] {
        width: 20px;
        height: 20px;
    }

.table-section[b-x5fyzlmx93] {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.table-container[b-x5fyzlmx93] {
    overflow-x: auto;
}

.client-records-table[b-x5fyzlmx93] {
    width: 100%;
    border-collapse: collapse;
}

    .client-records-table th[b-x5fyzlmx93] {
        background: #f8f9fa;
        padding: 15px;
        text-align: left;
        font-weight: 600;
        color: #333;
        border-bottom: 2px solid #dee2e6;
    }

    .client-records-table td[b-x5fyzlmx93] {
        padding: 15px;
        border-bottom: 1px solid #e9ecef;
    }

.client-row:hover[b-x5fyzlmx93] {
    background-color: rgba(255, 194, 15, 0.5) !important;
}

.name-column[b-x5fyzlmx93] {
    width: 40%;
}

.socialSecurityNumber-column[b-x5fyzlmx93] {
    width: 25%;
}

.date-column[b-x5fyzlmx93] {
    width: 25%;
}

.action-column[b-x5fyzlmx93] {
    width: 10%;
    text-align: center;
}

.edit-btn[b-x5fyzlmx93] {
    background: white;
    color: #40614E;
    border: none;
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

    .edit-btn:hover[b-x5fyzlmx93] {
        background:;
    }

.no-results[b-x5fyzlmx93] {
    text-align: center;
    padding: 40px;
    color: #666;
}

    .no-results i[b-x5fyzlmx93] {
        font-size: 48px;
        margin-bottom: 10px;
        opacity: 0.5;
    }

.spinner-border[b-x5fyzlmx93] {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .stats-cards[b-x5fyzlmx93] {
        justify-content: center;
    }

    .stat-card[b-x5fyzlmx93] {
        flex: 1;
        min-width: 80px;
    }

    .search-filter-section[b-x5fyzlmx93] {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box[b-x5fyzlmx93] {
        max-width: none;
    }
}
/* /Pages/ClientFiles/ClientSearch.razor.rz.scp.css */
.client-item[b-6f4b7awpjt] {
    border: 1px solid #c7c7c7;
    border-radius: 10px;
    margin-bottom: 10px;
    margin-right: 5px;
}

    .client-item:hover[b-6f4b7awpjt] {
        background-color: rgba(255, 194, 15, 0.5) !important;
        transform: translateX(2px);
        transition: all 0.2s ease;
    }

.room-item:hover[b-6f4b7awpjt] {
    background-color: #fff3cd !important;
}

.floor-header:hover[b-6f4b7awpjt] {
    opacity: 0.8;
}

.floors-container[b-6f4b7awpjt]::-webkit-scrollbar,
.clients-container[b-6f4b7awpjt]::-webkit-scrollbar {
    width: 6px;
}

.floors-container[b-6f4b7awpjt]::-webkit-scrollbar-track,
.clients-container[b-6f4b7awpjt]::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.floors-container[b-6f4b7awpjt]::-webkit-scrollbar-thumb,
.clients-container[b-6f4b7awpjt]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

    .floors-container[b-6f4b7awpjt]::-webkit-scrollbar-thumb:hover,
    .clients-container[b-6f4b7awpjt]::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

@media (max-width: 991.98px) {
    .col-lg-4[b-6f4b7awpjt], .col-lg-8[b-6f4b7awpjt] {
        margin-bottom: 1rem;
    }

    .floors-container[b-6f4b7awpjt], .clients-container[b-6f4b7awpjt] {
        max-height: 50vh !important;
    }
}

.badge[b-6f4b7awpjt] {
    color: #40614E;
}

.page-title[b-6f4b7awpjt] {
    color: #40614E;
    font-weight: 600;
}

.floor-name[b-6f4b7awpjt] {
    color: #40614E;
}

.floor-room-table[b-6f4b7awpjt] {
    border: none;
}

.floors-container[b-6f4b7awpjt] {
    border-radius: 10px;
    border: none;
}

.floor-header[b-6f4b7awpjt] {
    border-radius: 10px;
    border: 1px solid #c7c7c7;
    margin-bottom: 10px;
    margin-right: 5px;
}

    .floor-header:hover[b-6f4b7awpjt] {
        background-color: rgba(255, 194, 15, 0.5) !important;
        transform: translateX(2px);
        transition: all 0.2s ease;
    }

.card-header[b-6f4b7awpjt] {
    background-color: white;
    border: none;
    font-size: 20px;
    color: #40614E;
    font-weight: 600;
}

.clinet-name[b-6f4b7awpjt] {
    color: #40614E !important;
    font-weight: 600;
}
/* /Pages/ClientFiles/ClientStatusChangeModal.razor.rz.scp.css */
/* /Pages/MainWindow.razor.rz.scp.css */
.top-nav[b-bp83trvk87] {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.home-container[b-bp83trvk87] {
    background-color: #f5f5f5;
    padding: 2rem;
    min-height:87vh;
}

.logo-section[b-bp83trvk87] {
    max-width: 400px;
}

.logo-container[b-bp83trvk87] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.org-logo[b-bp83trvk87] {
    width: 120px;
    height: 120px;
    border-radius: 8px; /* Changed from 50% to 8px for rounded corners instead of circle */
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo-placeholder[b-bp83trvk87] {
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-circle[b-bp83trvk87] {
    width: 120px;
    height: 120px;
    border-radius: 8px; /* Changed from 50% to 8px for rounded corners instead of circle */
    background-color: #e9ecef;
    border: 3px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .placeholder-circle[b-bp83trvk87]::before {
        content: "📷";
        font-size: 2rem;
        color: #6c757d;
    }

.organization-name[b-bp83trvk87] {
    font-size: 2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.organization-subtitle[b-bp83trvk87] {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 400;
}

.navigation-cards[b-bp83trvk87] {
    max-width: 800px;
}

.nav-card[b-bp83trvk87] {
    width: 200px;
    height: 200px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .nav-card:hover[b-bp83trvk87] {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        border-color: #007bff;
    }

.card-content[b-bp83trvk87] {
    padding: 1.5rem;
}

.card-icon[b-bp83trvk87] {
    font-size: 3rem;
    color: #6c757d;
    transition: color 0.3s ease;
}

.nav-card:hover .card-icon[b-bp83trvk87] {
    color: #007bff;
}

.card-title[b-bp83trvk87] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.btn-settings[b-bp83trvk87] {
    width: 60px;
    height: 60px;
    background-color: #6c757d;
    border: none;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

    .btn-settings:hover[b-bp83trvk87] {
        background-color: #5a6268;
        transform: scale(1.05);
        color: white;
    }

.user-info[b-bp83trvk87] {
    font-weight: 500;
    color: #2c3e50;
}

    .user-info i[b-bp83trvk87] {
        font-size: 1.2rem;
        color: #6c757d;
    }

@media (max-width: 768px) {
    .navigation-cards[b-bp83trvk87] {
        flex-direction: column;
        align-items: center;
    }

    .nav-card[b-bp83trvk87] {
        width: 280px;
        margin-bottom: 1rem;
    }

    .organization-name[b-bp83trvk87] {
        font-size: 1.5rem;
    }

    .organization-subtitle[b-bp83trvk87] {
        font-size: 1rem;
    }
}
/* /Pages/Messages/Messages.razor.rz.scp.css */
/* /Pages/Settings/AdminPage.razor.rz.scp.css */
.admin-container[b-7jag18awim] {
    padding: 2rem;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.admin-header[b-7jag18awim] {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem 0;
}

.admin-icon[b-7jag18awim] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6c757d, #495057);
    border-radius: 50%;
    margin-bottom: 1rem;
}

    .admin-icon i[b-7jag18awim] {
        font-size: 2.5rem;
        color: white;
    }

.admin-title[b-7jag18awim] {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.admin-subtitle[b-7jag18awim] {
    font-size: 1.1rem;
    color: #6c757d;
}

.admin-cards-container[b-7jag18awim] {
    max-width: 1200px;
    margin: 0 auto;
}

.admin-cards-grid[b-7jag18awim] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.admin-card[b-7jag18awim] {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

    .admin-card[b-7jag18awim]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #007bff, #0056b3);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .admin-card:hover[b-7jag18awim] {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        border-color: #007bff;
    }

        .admin-card:hover[b-7jag18awim]::before {
            transform: scaleX(1);
        }

.settings-card[b-7jag18awim] {
    border-color: #28a745;
}

    .settings-card[b-7jag18awim]::before {
        background: linear-gradient(90deg, #28a745, #20c997);
    }

    .settings-card:hover[b-7jag18awim] {
        border-color: #28a745;
    }

.card-content[b-7jag18awim] {
    padding: 1.5rem;
    text-align: center;
    width: 100%;
}

.card-icon[b-7jag18awim] {
    font-size: 2.5rem;
    color: #6c757d;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.admin-card:hover .card-icon[b-7jag18awim] {
    color: #007bff;
    transform: scale(1.1);
}

.settings-card:hover .card-icon[b-7jag18awim] {
    color: #28a745;
}

.card-title[b-7jag18awim] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card-description[b-7jag18awim] {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .admin-container[b-7jag18awim] {
        padding: 1rem;
    }

    .admin-title[b-7jag18awim] {
        font-size: 2rem;
    }

    .admin-cards-grid[b-7jag18awim] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .admin-card[b-7jag18awim] {
        min-height: 150px;
    }

    .card-content[b-7jag18awim] {
        padding: 1rem;
    }

    .card-icon[b-7jag18awim] {
        font-size: 2rem;
    }

    .card-title[b-7jag18awim] {
        font-size: 1rem;
    }

    .card-description[b-7jag18awim] {
        font-size: 0.85rem;
    }
}

@media (min-width: 1400px) {
    .admin-cards-grid[b-7jag18awim] {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* /Pages/Settings/AdminPageBase.razor.rz.scp.css */
[b-twa4wt1bwp] .admin-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

[b-twa4wt1bwp] .page-header {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

[b-twa4wt1bwp] .page-header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
}

[b-twa4wt1bwp] .loading-spinner {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 14px;
}

[b-twa4wt1bwp] .spinner-border {
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #007bff;
    border-radius: 50%;
    animation: spin-b-twa4wt1bwp 1s linear infinite;
}

@keyframes spin-b-twa4wt1bwp {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

[b-twa4wt1bwp] .page-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

[b-twa4wt1bwp] .content-layout {
    display: grid;
    grid-template-columns: 450px 1fr;
    min-height: 600px;
    gap: 0;
}

[b-twa4wt1bwp] .form-section {
    background: #f8f9fa;
    border-right: 1px solid #e9ecef;
    padding: 24px;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

[b-twa4wt1bwp] .form-container {
    flex: 1;
}

[b-twa4wt1bwp] .form-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

[b-twa4wt1bwp] .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

[b-twa4wt1bwp] .form-group label {
    font-weight: 500;
    color: #495057;
    font-size: 14px;
}

[b-twa4wt1bwp] .form-control {
    padding: 12px 14px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    min-height: 44px;
    box-sizing: border-box;
}

[b-twa4wt1bwp] .form-control:focus {
    outline: none;
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

[b-twa4wt1bwp] .actions-section {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

[b-twa4wt1bwp] .btn-primary, [b-twa4wt1bwp] .btn-secondary, [b-twa4wt1bwp] .btn-outline {
    padding: 6px 18px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    min-height: 48px;
    touch-action: manipulation;
}

[b-twa4wt1bwp] .btn-primary {
    background: #4D6F66;
    color: white;
}

[b-twa4wt1bwp] .btn-primary:hover:not(:disabled) {
    background: rgba(77, 111, 102, 0.7);
}

[b-twa4wt1bwp] .btn-secondary {
    background: #007bff;
    color: white;
}

[b-twa4wt1bwp] .btn-secondary:hover:not(:disabled) {
    background: #0056b3;
}

[b-twa4wt1bwp] .btn-secondary:disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

[b-twa4wt1bwp] .btn-outline {
    background: transparent;
    color: #6c757d;
    border: 1px solid #ced4da;
}

[b-twa4wt1bwp] .btn-outline:hover {
    background: #f8f9fa;
    color: #495057;
}

[b-twa4wt1bwp] .table-section {
    padding: 24px;
    overflow-x: auto;
    max-height:600px;
}

[b-twa4wt1bwp] .table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 6px;
    border: 1px solid #e9ecef;
    height: 650px;
}

[b-twa4wt1bwp] .data-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

    [b-twa4wt1bwp] .data-table th,
    [b-twa4wt1bwp] .data-table td {
        padding: 14px 16px;
        text-align: left;
        border-bottom: 1px solid #e9ecef;
        white-space: nowrap;
    }

    [b-twa4wt1bwp] .data-table th {
        background: #f8f9fa;
        font-weight: 600;
        color: #495057;
        font-size: 14px;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    [b-twa4wt1bwp] .data-table td {
        font-size: 14px;
        color: #212529;
    }

    [b-twa4wt1bwp] .data-table tbody tr:hover {
        background: #f8f9fa;
    }

    [b-twa4wt1bwp] .data-table tbody tr.selected {
        background: #e8f4fd !important;
        border-left: 3px solid #007bff !important;
        font-weight: 600 !important;
    }

    [b-twa4wt1bwp] .data-table tbody tr.selected:hover {
        background: #d1ecf1 !important;
    }

    [b-twa4wt1bwp] .data-table tbody tr.selected td {
        font-weight: 600 !important;
    }

[b-twa4wt1bwp] .btn-edit, [b-twa4wt1bwp] .btn-delete {
    padding: 8px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 6px;
    margin-bottom: 4px;
    transition: all 0.2s ease;
    min-height: 36px;
    min-width: 36px;
    touch-action: manipulation;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

[b-twa4wt1bwp] .btn-edit {
    background: #ffc107;
    color: white;
}

    [b-twa4wt1bwp] .btn-edit:hover {
        background: #e0a800;
    }

[b-twa4wt1bwp] .btn-delete {
    background: #dc3545;
    color: white;
}

    [b-twa4wt1bwp] .btn-delete:hover {
        background: #c82333;
    }

[b-twa4wt1bwp] .alert {
    padding: 12px 16px;
    margin: 20px 30px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

[b-twa4wt1bwp] .alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

[b-twa4wt1bwp] .alert-success {
    background: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

@media (max-width: 1024px) {
    [b-twa4wt1bwp] .content-layout {
        grid-template-columns: 320px 1fr;
    }

    [b-twa4wt1bwp] .form-section {
        padding: 20px;
    }

    [b-twa4wt1bwp] .table-section {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    [b-twa4wt1bwp] .admin-page {
        padding: 15px;
    }

    [b-twa4wt1bwp] .content-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }

    [b-twa4wt1bwp] .form-section {
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        padding: 20px;
        min-height: auto;
    }

    [b-twa4wt1bwp] .table-section {
        padding: 20px;
    }

    [b-twa4wt1bwp] .actions-section {
        margin-top: 20px;
        padding-top: 15px;
    }

    [b-twa4wt1bwp] .data-table th,
    [b-twa4wt1bwp] .data-table td {
        padding: 10px 8px;
        font-size: 13px;
    }

        [b-twa4wt1bwp] .data-table th:nth-child(n+3),
        [b-twa4wt1bwp] .data-table td:nth-child(n+3) {
            display: none;
        }

        [b-twa4wt1bwp] .data-table th:last-child,
        [b-twa4wt1bwp] .data-table td:last-child {
            display: table-cell;
        }

    [b-twa4wt1bwp] .btn-edit, [b-twa4wt1bwp] .btn-delete {
        padding: 6px 8px;
        margin-right: 4px;
        min-height: 32px;
        min-width: 32px;
    }
}

@media (max-width: 480px) {
    [b-twa4wt1bwp] .admin-page {
        padding: 10px;
    }

    [b-twa4wt1bwp] .page-header h1 {
        font-size: 20px;
    }

    [b-twa4wt1bwp] .form-section {
        padding: 15px;
    }

    [b-twa4wt1bwp] .table-section {
        padding: 15px;
    }

    [b-twa4wt1bwp] .form-grid {
        gap: 15px;
    }

    [b-twa4wt1bwp] .form-control {
        padding: 10px 12px;
        font-size: 16px;
    }

    [b-twa4wt1bwp] .btn-primary, [b-twa4wt1bwp] .btn-secondary, [b-twa4wt1bwp] .btn-outline {
        padding: 12px 16px;
        font-size: 15px;
        min-height: 44px;
    }

    [b-twa4wt1bwp] .actions-section {
        gap: 10px;
    }

    [b-twa4wt1bwp] .data-table th:nth-child(2),
    [b-twa4wt1bwp] .data-table td:nth-child(2),
    [b-twa4wt1bwp] .data-table th:nth-child(3),
    [b-twa4wt1bwp] .data-table td:nth-child(3),
    [b-twa4wt1bwp] .data-table th:nth-child(4),
    [b-twa4wt1bwp] .data-table td:nth-child(4) {
        display: none;
    }

    [b-twa4wt1bwp] .data-table th:first-child,
    [b-twa4wt1bwp] .data-table td:first-child {
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 320px) {
    [b-twa4wt1bwp] .form-section {
        padding: 12px;
    }

    [b-twa4wt1bwp] .table-section {
        padding: 12px;
    }

    [b-twa4wt1bwp] .btn-primary, [b-twa4wt1bwp] .btn-secondary, [b-twa4wt1bwp] .btn-outline {
        font-size: 14px;
        padding: 10px 14px;
        min-height: 42px;
    }
}
/* /Pages/Settings/Components/Churches.razor.rz.scp.css */
/* /Pages/Settings/Components/Conditions.razor.rz.scp.css */
.care-form-container[b-38t91slj0c] {
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
}

.form-header[b-38t91slj0c] {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #40614E;
    font-size:20px;
}

    .form-header h3[b-38t91slj0c] {
        margin: 0;
        font-weight: 600;
    }

.form-content[b-38t91slj0c] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.field-label[b-38t91slj0c] {
    font-size: 18px;
    font-weight: 600;
    color: #40614E;
    display: flex;
    align-items: center;
}

.left-panel[b-38t91slj0c],
.right-panel[b-38t91slj0c] {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.section-label[b-38t91slj0c] {
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px;
    display: block;
}

.section-title[b-38t91slj0c] {
    font-size: 18px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 20px;
}

.form-section[b-38t91slj0c] {
    margin-bottom: 30px;
}

/* Section separator for better visual distinction */
.section-separator[b-38t91slj0c] {
    height: 1px;
    background: linear-gradient(to right, #dee2e6, transparent);
    margin: 10px 0 20px 0;
    border-radius: 1px;
}

.dropdown-container[b-38t91slj0c] {
    margin-bottom: 20px;
}

.category-select[b-38t91slj0c] {
    background: #ffc107;
    border: none;
    color: #000;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 16px;
}

.form-select[b-38t91slj0c] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    background: #ffc107;
    color: #40614E;
    font-weight: 500;
    font-size: 18px;
}

.state-select[b-38t91slj0c],
.needs-select[b-38t91slj0c] {
    background: #ffc107;
    border: none;
    color: #40614E;
    font-weight: 600;
}

.input-group[b-38t91slj0c] {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}

.state-header[b-38t91slj0c]{
    display:flex;
    justify-content:space-between;
}

.btn-add[b-38t91slj0c] {
    background: #40614E;
    border: none;
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    font-weight: 500;
    white-space: nowrap;
    margin: 5px;
}

    .btn-add:hover[b-38t91slj0c] {
        background: #5a6268;
    }

.new-item-form[b-38t91slj0c] {
    margin-top: 10px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.form-input[b-38t91slj0c] {
    padding: 8px 12px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 14px;
    flex: 1;
}

.selected-needs-list[b-38t91slj0c] {
    margin: 15px 0;
}

.need-item[b-38t91slj0c] {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 8px;
}

.need-icon[b-38t91slj0c] {
    color: #6c757d;
    margin-right: 10px;
}

.need-name[b-38t91slj0c] {
    flex: 1;
    font-weight: 500;
}

.btn-add-selected[b-38t91slj0c] {
    width: 100%;
    padding: 12px;
    border: 2px dashed #6c757d;
    background: transparent;
    color: #6c757d;
    border-radius: 6px;
    font-weight: 500;
}

.selected-need-form[b-38t91slj0c] {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.form-header-small[b-38t91slj0c] {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #495057;
    font-weight: 600;
}

.form-group[b-38t91slj0c] {
    margin-bottom: 25px;
}

.form-label[b-38t91slj0c] {
    font-weight: 600;
    color: #40614E;
    margin-bottom: 12px;
    display: block;
    font-size: 18px;
}

.name-inputs[b-38t91slj0c] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.name-input-group[b-38t91slj0c] {
    display: flex;
    flex-direction: column;
}

.input-label[b-38t91slj0c] {
    font-size: 16px;
    color: #40614E;
    margin-bottom: 5px;
}

.schedule-container[b-38t91slj0c] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-row[b-38t91slj0c] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.schedule-item[b-38t91slj0c] {
    display: flex;
    flex-direction: column;
}

.time-input[b-38t91slj0c] {
    width: 120px;
}

.frequency-unit[b-38t91slj0c] {
    font-size: 14px;
    color: #6c757d;
    margin-left: 8px;
}

.admin-container[b-38t91slj0c] {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.admin-row[b-38t91slj0c] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.admin-item[b-38t91slj0c] {
    display: flex;
    flex-direction: column;
}

.measurement-toggle[b-38t91slj0c] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toggle-text[b-38t91slj0c] {
    font-size: 14px;
    color: #495057;
}

.form-actions[b-38t91slj0c] {
    text-align: right;
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
}

.btn-save[b-38t91slj0c] {
    background: #40614E;
    border: none;
    color: white;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    padding: 8px;
}

    .btn-save:hover:not(:disabled)[b-38t91slj0c] {
        background: #5a6268;
    }

    .btn-save:disabled[b-38t91slj0c] {
        opacity: 0.6;
        cursor: not-allowed;
    }

.btn[b-38t91slj0c] {
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-sm[b-38t91slj0c] {
    padding: 4px 8px;
    font-size: 12px;
}

.btn-outline-danger[b-38t91slj0c] {
    background: transparent;
    color: #dc3545;
    border: 1px solid #dc3545;
}

    .btn-outline-danger:hover[b-38t91slj0c] {
        background: #dc3545;
        color: white;
    }

.btn-outline-success[b-38t91slj0c] {
    background: #40614E;
    color: #fff;

}

    .btn-outline-success:hover[b-38t91slj0c] {
        background: transparent;
        color: #40614E;
        border: solid 1px #40614E;
    }

.btn-success[b-38t91slj0c] {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
}

    .btn-success:hover:not(:disabled)[b-38t91slj0c] {
        background: #218838;
    }

.btn-secondary[b-38t91slj0c] {
    background: #6c757d;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
}

    .btn-secondary:hover[b-38t91slj0c] {
        background: #5a6268;
    }

/* Moved from Conditions.razor embedded <style> */
.checkbox-group[b-38t91slj0c] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px 0;
}

.checkbox-item[b-38t91slj0c] {
    display: flex;
    align-items: center;
}

.checkbox-label[b-38t91slj0c] {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.checkbox-text[b-38t91slj0c] {
    color: #495057;
    font-weight: 500;
}

.form-buttons[b-38t91slj0c] {
    display: flex;
    gap: 8px;
    align-items: center;
}

.new-item-form[b-38t91slj0c] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 12px;
    margin-top: 8px;
}

.new-item-form .form-input[b-38t91slj0c] {
    width: 100%;
    margin-bottom: 0;
}

.rename-form[b-38t91slj0c] {
    background: #e8f4f8;
    border: 1px solid #b3d9e8;
    border-radius: 6px;
    padding: 12px;
    margin-top: 8px;
}

.rename-form .form-input[b-38t91slj0c] {
    width: 100%;
    margin-bottom: 0;
}

input[type="checkbox"][b-38t91slj0c] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.panel-disabled[b-38t91slj0c] {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
    filter: grayscale(0.3);
}

.panel-overlay[b-38t91slj0c] {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.5);
    z-index: 10;
    border-radius: 12px;
}

/* Shift toggle styles for consistency */
.shift-toggle-container[b-38t91slj0c] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shift-label[b-38t91slj0c] {
    font-size: 14px;
    color: #495057;
    font-weight: 500;
}

.shift-switch[b-38t91slj0c] {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.shift-switch input[b-38t91slj0c] {
    opacity: 0;
    width: 0;
    height: 0;
}

.shift-slider[b-38t91slj0c] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

.shift-slider[b-38t91slj0c]:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .shift-slider[b-38t91slj0c] {
    background-color: #40614E;
}

input:checked + .shift-slider[b-38t91slj0c]:before {
    transform: translateX(26px);
}

/* Radio button styling for monthly scheduling */
.radio-group[b-38t91slj0c] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 8px 0;
}

.radio-item[b-38t91slj0c] {
    display: flex;
    align-items: center;
}

.radio-label[b-38t91slj0c] {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.radio-text[b-38t91slj0c] {
    color: #495057;
    font-weight: 500;
}

input[type="radio"][b-38t91slj0c] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #40614E;
}

/* Full width schedule item for radio buttons */
.schedule-item.full-width[b-38t91slj0c] {
    grid-column: 1 / -1;
}

/* Monthly scheduling specific styles */
.monthly-options[b-38t91slj0c] {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.monthly-option-row[b-38t91slj0c] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: end;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .form-content[b-38t91slj0c] {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .schedule-row[b-38t91slj0c] {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .admin-row[b-38t91slj0c] {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .name-inputs[b-38t91slj0c] {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}
/* /Pages/Settings/Components/DocumentTypes.razor.rz.scp.css */
/* /Pages/Settings/Components/Floors.razor.rz.scp.css */
/* /Pages/Settings/Components/FuneralServices.razor.rz.scp.css */
/* /Pages/Settings/Components/Medicines.razor.rz.scp.css */
.file-upload-section[b-wgka0t7gb9] {
    margin-top: 0.5rem;
}

.upload-progress[b-wgka0t7gb9] {
    margin-top: 0.5rem;
    color: #007bff;
    font-style: italic;
}

.alert[b-wgka0t7gb9] {
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.alert-success[b-wgka0t7gb9] {
    background-color: #d1f2eb;
    border: 1px solid #7dcea0;
    color: #0e6b47;
}

.alert-danger[b-wgka0t7gb9] {
    background-color: #fadbd8;
    border: 1px solid #f1948a;
    color: #922b21;
}
/* /Pages/Settings/Components/ResidentInventory.razor.rz.scp.css */
/* /Pages/Settings/Components/Roles.razor.rz.scp.css */
.per-list[b-2bc1a8wnqq] {
    display: flex;
    justify-content:space-between;
    width:70%;
}
.task-name[b-2bc1a8wnqq] {
    color: #40614E;
    font-weight: 500;
    font-size: 14px;
}
/* /Pages/Settings/Components/Rooms.razor.rz.scp.css */
[b-qt97gy8uj8].form-check-input.custom-switch-lg {
    transform: scale(2.0);
}

.shift-toggle-container-room[b-qt97gy8uj8] {
    display: flex;
    align-items: center;
    padding: 12px 0;

}

.shift-slider-reverse[b-qt97gy8uj8] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #495057;
    transition: .4s;
    border-radius: 30px;
}

    .shift-slider-reverse[b-qt97gy8uj8]:before {
        position: absolute;
        content: "";
        height: 22px;
        width: 22px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
        box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
    }

input:checked + .shift-slider-reverse[b-qt97gy8uj8] {
    background-color: #ffc107;
}

    input:checked + .shift-slider-reverse[b-qt97gy8uj8]:before {
        transform: translateX(30px);
    }
/* /Pages/Settings/Components/SystemSettings.razor.rz.scp.css */
/* /Pages/Settings/Components/Workers.razor.rz.scp.css */


.shift-label-reverse[b-9irelvidwu] {
    font-size: 14px;
    font-weight: 500;
    color: #495057;
}

.shift-slider-reverse[b-9irelvidwu] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #495057;
    transition: .4s;
    border-radius: 30px;
}

    .shift-slider-reverse[b-9irelvidwu]:before {
        position: absolute;
        content: "";
        height: 22px;
        width: 22px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
        box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
    }

input:checked + .shift-slider-reverse[b-9irelvidwu] {
    background-color: #ffc107;
}

    input:checked + .shift-slider-reverse[b-9irelvidwu]:before {
        transform: translateX(30px);
    }
/* /Pages/Settings/NavItemsAdmin.razor.rz.scp.css */
.navbar-toggler[b-m3ofb4s3an] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 2.5rem;
    color: white;
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem rgba(255, 255, 255, 0.1);
}

.navbar-toggler:checked[b-m3ofb4s3an] {
    background-color: rgba(255, 255, 255, 0.5);
}

.top-row[b-m3ofb4s3an] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-m3ofb4s3an] {
    font-size: 1.1rem;
}

.icons[b-m3ofb4s3an]{
    display:flex;
    align-items:center;
    justify-content:center;
    width: 3rem;
    height: 3rem;
}

.nav-item[b-m3ofb4s3an] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-m3ofb4s3an] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-m3ofb4s3an] {
        padding-bottom: 1rem;
    }

    .nav-item[b-m3ofb4s3an]  .nav-link {
        color: #4D6F66;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

    .nav-item[b-m3ofb4s3an]  a.active {
        background-color: #FDC00F;
        color: #4D6F66;
    }

    .nav-item[b-m3ofb4s3an]  .nav-link:hover {
        background-color: rgba(255, 194, 15, 0.5);
        color: #4D6F66;
    }

.nav-scrollable[b-m3ofb4s3an] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-m3ofb4s3an] {
    display: block;
}

@media (min-width: 641px) {
    .navbar-toggler[b-m3ofb4s3an] {
        display: none;
    }

    .nav-scrollable[b-m3ofb4s3an] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* /Pages/Task/CareLogBooksByFloor.razor.rz.scp.css */
[b-1tgupgbm2m].form-check-input.custom-switch-lg {
    transform: scale(2.0);
}
h3[b-1tgupgbm2m] {
    color: rgb(64, 97, 78);
}
.task-item[b-1tgupgbm2m]{
    border-radius:10px;
}

.task-title[b-1tgupgbm2m]{
    color:black;
    font-weight:700;
    font-size: 1.2rem;
}

.task-client[b-1tgupgbm2m]{
    font-weight:700;
    font-size: 1rem
}

.task-room[b-1tgupgbm2m] {
    font-weight: 600;
    font-size: 1rem
}

.task-modif[b-1tgupgbm2m]{
    font-weight: 600;
    font-size: 1rem;
}

.card[b-1tgupgbm2m] {
    border-radius: 10px;
}

.task-item:hover[b-1tgupgbm2m] {
    background-color: #f8f9fa;
}

.status-icon[b-1tgupgbm2m] {
    transition: transform 0.2s;
}

.task-item:hover .status-icon[b-1tgupgbm2m] {
    transform: scale(1.1);
}

.dropdown-menu[b-1tgupgbm2m] {
    max-height: 300px;
    overflow-y: auto;
}

.task-details[b-1tgupgbm2m] {
    text-align: left;
}

.client-info[b-1tgupgbm2m], .status-info[b-1tgupgbm2m], .executor-info[b-1tgupgbm2m] {
    text-align: center;
}

.time-info[b-1tgupgbm2m] {
    text-align: center;
}

.custom-table-container .table-row-clickable:hover[b-1tgupgbm2m] {
    background-color: rgba(0, 123, 255, 0.1) !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.2s ease-in-out;
}

.table-row-date[b-1tgupgbm2m] {
    color: #000;
    font-size: 1rem;
}

.table-row-title[b-1tgupgbm2m] {
    color: #000;
}

.btn.btn-link.p-0.fw-bold.text-primary[b-1tgupgbm2m] {
    color: rgb(64, 97, 78);
}

/* TaskType-based color coding - uses global color variables */
.task-type-none[b-1tgupgbm2m] {
    border-left: 6px solid var(--task-type-none-color) !important;
}

.task-type-special[b-1tgupgbm2m] {
    border-left: 6px solid var(--task-type-special-color) !important;
}

.task-type-mental[b-1tgupgbm2m] {
    border-left: 6px solid var(--task-type-mental-color) !important;
}

.task-type-physiotherapy[b-1tgupgbm2m] {
    border-left: 6px solid var(--task-type-physiotherapy-color) !important;
}
/* /Pages/Task/ClientTask/TaskConfirmModal.razor.rz.scp.css */
.modal-content[b-7pk1mzwyr7] {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-width: 600px;
    margin: 0 auto;
}

.modal-body[b-7pk1mzwyr7] {
    padding: 30px;
    text-align: center;
}

.client-name[b-7pk1mzwyr7] {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
}

.task-name[b-7pk1mzwyr7] {
    font-size: 16px;
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 30px;
}

.status-selection[b-7pk1mzwyr7] {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
}

.status-option[b-7pk1mzwyr7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 15px;
    border-radius: 8px;
    min-width: 120px;
}

    .status-option:hover[b-7pk1mzwyr7] {
        background: #f8f9fa;
    }

    .status-option.selected[b-7pk1mzwyr7] {

    }

.status-icon-container[b-7pk1mzwyr7] {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 12px;
    transition: all 0.2s ease;
}

    .status-icon-container.success[b-7pk1mzwyr7] {
        background: #e8f5e8;
        color: #28a745;
        border: 2px solid #28a745;
    }

    .status-icon-container.failed[b-7pk1mzwyr7] {
        background: #fdf2f2;
        color: #dc3545;
        border: 2px solid #dc3545;
    }

.status-option.selected .status-icon-container.success[b-7pk1mzwyr7] {
    background: #28a745;
    color: white;
}

.status-option.selected .status-icon-container.failed[b-7pk1mzwyr7] {
    background: #dc3545;
    color: white;
}

.status-text[b-7pk1mzwyr7] {
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    text-align: center;
    line-height: 1.3;
}

.comment-section[b-7pk1mzwyr7] {
    margin-bottom: 25px;
}

.comment-input[b-7pk1mzwyr7] {
    width: 100%;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    background: #f8f9fa;
    resize: none;
    outline: none;
    transition: border-color 0.2s ease;
}

    .comment-input:focus[b-7pk1mzwyr7] {
        border-color: #007bff;
        background: white;
    }

    .comment-input[b-7pk1mzwyr7]::placeholder {
        color: #6c757d;
    }

.action-buttons[b-7pk1mzwyr7] {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn[b-7pk1mzwyr7] {
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 80px;
}

    .btn:disabled[b-7pk1mzwyr7] {
        opacity: 0.6;
        cursor: not-allowed;
    }

.btn-cancel[b-7pk1mzwyr7] {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

    .btn-cancel:hover:not(:disabled)[b-7pk1mzwyr7] {
        background: #e9ecef;
    }

.btn-delete[b-7pk1mzwyr7] {
    background: #ffc107;
    color: #000;
}

    .btn-delete:hover:not(:disabled)[b-7pk1mzwyr7] {
        background: #e0a800;
    }

.btn-save[b-7pk1mzwyr7] {
    background: #28a745;
    color: white;
}

    .btn-save:hover:not(:disabled)[b-7pk1mzwyr7] {
        background: #218838;
    }

.modal[b-7pk1mzwyr7] {
    z-index: 1055;
}

.modal-backdrop[b-7pk1mzwyr7] {
    z-index: 1050;
}

/* /Pages/Task/ClientTask/TaskCreationModal.razor.rz.scp.css */
.modal-content[b-72l69w101r] {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    max-width: 450px;
    margin: 0 auto;
}

.modal-body[b-72l69w101r] {
    padding: 30px;
}

.client-name[b-72l69w101r] {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
    text-align: center;
}

.form-title[b-72l69w101r] {
    font-size: 16px;
    font-weight: 500;
    color: #6c757d;
    margin-bottom: 25px;
    text-align: center;
}

.form-group[b-72l69w101r] {
    margin-bottom: 20px;
}

.form-label[b-72l69w101r] {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    margin-bottom: 8px;
}

.form-input[b-72l69w101r] {
    width: 100%;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    background: #f8f9fa;
    outline: none;
    transition: all 0.2s ease;
}

    .form-input:focus[b-72l69w101r] {
        border-color: #007bff;
        background: white;
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    }

.form-textarea[b-72l69w101r] {
    width: 100%;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    background: #f8f9fa;
    resize: vertical;
    outline: none;
    transition: all 0.2s ease;
    font-family: inherit;
}

    .form-textarea:focus[b-72l69w101r] {
        border-color: #007bff;
        background: white;
        box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    }

    .form-input[b-72l69w101r]::placeholder,
    .form-textarea[b-72l69w101r]::placeholder {
        color: #6c757d;
    }


.action-buttons[b-72l69w101r] {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
}

.btn[b-72l69w101r] {
    border: none;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 100px;
}

    .btn:disabled[b-72l69w101r] {
        opacity: 0.6;
        cursor: not-allowed;
    }

.btn-cancel[b-72l69w101r] {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
}

    .btn-cancel:hover:not(:disabled)[b-72l69w101r] {
        background: #e9ecef;
    }

.btn-save[b-72l69w101r] {
    background: #28a745;
    color: white;
}

    .btn-save:hover:not(:disabled)[b-72l69w101r] {
        background: #218838;
    }

.modal[b-72l69w101r] {
    z-index: 1055;
}

.modal-backdrop[b-72l69w101r] {
    z-index: 1050;
}

/* /Pages/Task/ClientTask/TasksClient.razor.rz.scp.css */
.client-card[b-7kzoiud0t9] {
    border: none;
    border-radius: 10px;
    border: 1px solid #c7c7c7;
}

.client-name[b-7kzoiud0t9] {
    color: #40614E;
    font-weight:700;
    font-size: 1.3rem;
}

.filter-buttons[b-7kzoiud0t9] {
    display: flex;
    gap: 8px;
}

.client-card-room[b-7kzoiud0t9] {
    color: #40614E;
    font-weight: 400;
    font-size: 1rem;
}

.filter-btn[b-7kzoiud0t9] {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    align-content: center;
    margin-block: 10px;
}

    .filter-btn:hover[b-7kzoiud0t9] {
        background: #e9ecef;
    }

    .filter-btn.active[b-7kzoiud0t9] {
        background: #ffc107;
        border-color: #ffc107;
        color: #000;
    }

.custom-toggle[b-7kzoiud0t9] {
    width: 50px;
    height: 25px;
    background: #6c757d;
    border-radius: 25px;
    position: relative;
    cursor: pointer;
}

    .custom-toggle:checked[b-7kzoiud0t9] {
        background: #ffc107;
    }

.toggle-label[b-7kzoiud0t9] {
    font-size: 14px;
    font-weight: 500;
    margin-left: 8px;
}

.timeline-wrapper[b-7kzoiud0t9] {
    position: relative;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.timeline-container[b-7kzoiud0t9] {
    max-height: 70vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
}

.timeline-row[b-7kzoiud0t9] {
    display: flex;
    min-height: 80px;
    border-bottom: 1px solid #e9ecef;
}

    .timeline-row:last-child[b-7kzoiud0t9] {
        border-bottom: none;
    }

.time-column[b-7kzoiud0t9] {
    width: 80px;
    min-width: 80px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 10px;
    background: #fff;

}

.time-label[b-7kzoiud0t9] {
    font-weight: 600;
    font-size: 16px;
    color: #495057;
    text-align: center;
}

.timeline-line[b-7kzoiud0t9] {
    width: 40px;
    min-width: 40px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 25px;
    background: #fff;

    position: relative;
}

    .timeline-line[b-7kzoiud0t9]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        width: 2px;
        height: 100%;
        background: #dee2e6;
        transform: translateX(-50%);
    }

.timeline-dot[b-7kzoiud0t9] {
    width: 12px;
    height: 12px;
    background: #6c757d;
    border-radius: 50%;
    z-index: 1;
    position: relative;
}

.tasks-column[b-7kzoiud0t9] {
    flex: 1;
    padding: 15px;
    background: white;
}

.tasks-horizontal[b-7kzoiud0t9] {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.form-control[b-7kzoiud0t9] {
    border: 1px solid #40614E;
    color: #40614E;
}

.task-card[b-7kzoiud0t9] {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 250px;
    position: relative;
    border-left: 5px solid #6c757d; /* Default gray border */
}

.task-card.completed[b-7kzoiud0t9] {
    background: #d4edda;
    /* Keep the original background but don't override border - TaskType will handle it */
}

.task-card.failed[b-7kzoiud0t9] {
    background: rgba(255, 0, 0, 0.2);
    /* Keep the original background but don't override border - TaskType will handle it */
}

.task-card.pending[b-7kzoiud0t9] {
    background: #e2e3e5;
    /* Keep the original background but don't override border - TaskType will handle it */
}

    .task-card:hover[b-7kzoiud0t9] {
        background: #e9ecef;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        /* Don't override border-left-color - TaskType classes will handle it */
    }

    .task-card.completed:hover[b-7kzoiud0t9] {
        background: #c3e6cb;
        /* Don't override border-left-color - TaskType classes will handle it */
    }

    .task-card.failed:hover[b-7kzoiud0t9] {
        background: rgba(255, 0, 0, 0.3);
        /* Don't override border-left-color - TaskType classes will handle it */
    }

    .task-card.pending:hover[b-7kzoiud0t9] {
        background: #d1d3d4;
        /* Don't override border-left-color - TaskType classes will handle it */
    }

/* TaskType color overrides for hover states - ensure colors persist during hover */
.task-card.task-type-none:hover[b-7kzoiud0t9],
.task-card.completed.task-type-none:hover[b-7kzoiud0t9],
.task-card.failed.task-type-none:hover[b-7kzoiud0t9],
.task-card.pending.task-type-none:hover[b-7kzoiud0t9] {
    border-left-color: var(--task-type-none-color) !important;
}

.task-card.task-type-special:hover[b-7kzoiud0t9],
.task-card.completed.task-type-special:hover[b-7kzoiud0t9],
.task-card.failed.task-type-special:hover[b-7kzoiud0t9],
.task-card.pending.task-type-special:hover[b-7kzoiud0t9] {
    border-left-color: var(--task-type-special-color) !important;
}

.task-card.task-type-mental:hover[b-7kzoiud0t9],
.task-card.completed.task-type-mental:hover[b-7kzoiud0t9],
.task-card.failed.task-type-mental:hover[b-7kzoiud0t9],
.task-card.pending.task-type-mental:hover[b-7kzoiud0t9] {
    border-left-color: var(--task-type-mental-color) !important;
}

.task-card.task-type-physiotherapy:hover[b-7kzoiud0t9],
.task-card.completed.task-type-physiotherapy:hover[b-7kzoiud0t9],
.task-card.failed.task-type-physiotherapy:hover[b-7kzoiud0t9],
.task-card.pending.task-type-physiotherapy:hover[b-7kzoiud0t9] {
    border-left-color: var(--task-type-physiotherapy-color) !important;
}

.task-header[b-7kzoiud0t9] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.task-time[b-7kzoiud0t9] {
    font-size: 12px;
    color: #6c757d;
    font-weight: 500;
}

.task-status-icon[b-7kzoiud0t9] {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

    .task-status-icon.success[b-7kzoiud0t9] {
        background: #28a745;
        color: white;
    }

    .task-status-icon.failed[b-7kzoiud0t9] {
        background: #dc3545;
        color: white;
    }

    .task-status-icon.pending[b-7kzoiud0t9] {
        background: #6c757d;
        color: white;
    }
.task-title[b-7kzoiud0t9] {
    font-weight: 600;
    color: #495057;
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 1.3;
}

.task-subtitle[b-7kzoiud0t9] {
    font-size: 12px;
    color: #6c757d;
    line-height: 1.2;
}

.timeline-container[b-7kzoiud0t9]::-webkit-scrollbar {
    width: 8px;
}

.timeline-container[b-7kzoiud0t9]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.timeline-container[b-7kzoiud0t9]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

    .timeline-container[b-7kzoiud0t9]::-webkit-scrollbar-thumb:hover {
        background: #a8a8a8;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .tasks-horizontal[b-7kzoiud0t9] {
        flex-direction: column;
    }

    .task-card[b-7kzoiud0t9] {
        width: 100%;
    }
}

/* TaskType color overrides for task cards - uses global color variables with higher specificity */
.task-card.task-type-none[b-7kzoiud0t9],
.task-card.completed.task-type-none[b-7kzoiud0t9],
.task-card.failed.task-type-none[b-7kzoiud0t9],
.task-card.pending.task-type-none[b-7kzoiud0t9] {
    border-left-color: var(--task-type-none-color) !important;
}

.task-card.task-type-special[b-7kzoiud0t9],
.task-card.completed.task-type-special[b-7kzoiud0t9],
.task-card.failed.task-type-special[b-7kzoiud0t9],
.task-card.pending.task-type-special[b-7kzoiud0t9] {
    border-left-color: var(--task-type-special-color) !important;
}

.task-card.task-type-mental[b-7kzoiud0t9],
.task-card.completed.task-type-mental[b-7kzoiud0t9],
.task-card.failed.task-type-mental[b-7kzoiud0t9],
.task-card.pending.task-type-mental[b-7kzoiud0t9] {
    border-left-color: var(--task-type-mental-color) !important;
}

.task-card.task-type-physiotherapy[b-7kzoiud0t9],
.task-card.completed.task-type-physiotherapy[b-7kzoiud0t9],
.task-card.failed.task-type-physiotherapy[b-7kzoiud0t9],
.task-card.pending.task-type-physiotherapy[b-7kzoiud0t9] {
    border-left-color: var(--task-type-physiotherapy-color) !important;
}

/* /Pages/Task/ClientTaskUnique/TasksClientUnique.razor.rz.scp.css */
.client-card[b-ggtvy7ak3k] {
    border: none;
    border-radius: 10px;
    border: 1px solid #c7c7c7;
}

.client-name[b-ggtvy7ak3k] {
    color: #40614E;
    font-weight: 700;
    font-size: 1.3rem;
}

.client-card-room[b-ggtvy7ak3k] {
    color: #40614E;
    font-weight: 400;
    font-size: 1rem;
}

.custom-table-container .table-row-clickable:hover[b-ggtvy7ak3k] {
    background-color: rgba(0, 123, 255, 0.1) !important;
    cursor: pointer;
}



.task-item:hover[b-ggtvy7ak3k] {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

.success-rate-column[b-ggtvy7ak3k] {
    transition: transform 0.2s;
}

.task-item:hover .success-rate-column[b-ggtvy7ak3k] {
    transform: scale(1.05);
}

.modal.show[b-ggtvy7ak3k] {
    animation: fadeIn-b-ggtvy7ak3k 0.15s ease-in;
}

@keyframes fadeIn-b-ggtvy7ak3k {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.contact-column[b-ggtvy7ak3k] {
    font-size: 0.9rem;
}

.btn-outline-primary[b-ggtvy7ak3k] {
    border: 1px solid #40614E;
    color: #40614E;
}

    .btn-outline-primary:hover[b-ggtvy7ak3k] {
        background-color: #40614E;
        color: #fff;
    }

.task-details[b-ggtvy7ak3k] {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.table-row-date[b-ggtvy7ak3k] {
    color: #000;
}

.table-row-title[b-ggtvy7ak3k] {
    color: #000;
}

.row-status[b-ggtvy7ak3k] {
    align-content: center;
}

.row-group[b-ggtvy7ak3k] {
    align-content: center;
}

.success-metrics[b-ggtvy7ak3k] {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.status-badge[b-ggtvy7ak3k] {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-item[b-ggtvy7ak3k] {
    font-size: 0.9em;
}

.progress-bar[b-ggtvy7ak3k] {
    transition: width 0.3s ease;
}

.btn-group-vertical .btn[b-ggtvy7ak3k] {
    border-radius: 4px !important;
    font-size: 0.8em;
}

.custom-table-container .table > tbody > tr:hover[b-ggtvy7ak3k] {
    background-color: rgba(0, 123, 255, 0.05) !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.badge[b-ggtvy7ak3k] {
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-primary[b-ggtvy7ak3k] {
    color: #fff;
    background-color: #4D6F66;
    border-color: #4D6F66;
}

    .btn-primary:hover[b-ggtvy7ak3k] {
        background-color: #40614E;
    }

/* TaskType-based color coding for table rows - uses global color variables */
.task-type-none[b-ggtvy7ak3k] {
    border-left: 6px solid var(--task-type-none-color) !important;
}

.task-type-special[b-ggtvy7ak3k] {
    border-left: 6px solid var(--task-type-special-color) !important;
}

.task-type-mental[b-ggtvy7ak3k] {
    border-left: 6px solid var(--task-type-mental-color) !important;
}

.task-type-physiotherapy[b-ggtvy7ak3k] {
    border-left: 6px solid var(--task-type-physiotherapy-color) !important;
}

/* /Pages/Task/ClientTaskUnique/TasksClientUniqueCreateEdit.razor.rz.scp.css */
.required[b-aieip7gbhg]::after {
    content: " *";
    color: #dc3545;
}

/* /Pages/Task/GroupTasks.razor.rz.scp.css */
.task-item:hover[b-1idx63p48s] {
    background-color: #f8f9fa;
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

.success-rate-column[b-1idx63p48s] {
    transition: transform 0.2s;
}

.task-item:hover .success-rate-column[b-1idx63p48s] {
    transform: scale(1.05);
}

.modal.show[b-1idx63p48s] {
    animation: fadeIn-b-1idx63p48s 0.15s ease-in;
}

@keyframes fadeIn-b-1idx63p48s {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.contact-column[b-1idx63p48s] {
    font-size: 0.9rem;
}

.btn-outline-primary[b-1idx63p48s] {
    border: 1px solid #40614E;
    color: #40614E;
}

    .btn-outline-primary:hover[b-1idx63p48s] {
        background-color: #40614E;
        color:#fff;
    }

.task-details[b-1idx63p48s] {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.table-row-date[b-1idx63p48s] {
    color: #000;
}

.table-row-title[b-1idx63p48s]{
    color:#000;
}

.row-status[b-1idx63p48s]{
    align-content:center;
}

.row-group[b-1idx63p48s] {
    align-content: center;
}

.success-metrics[b-1idx63p48s] {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.status-badge[b-1idx63p48s] {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-item[b-1idx63p48s] {
    font-size: 0.9em;
}

.progress-bar[b-1idx63p48s] {
    transition: width 0.3s ease;
}

.btn-group-vertical .btn[b-1idx63p48s] {
    border-radius: 4px !important;
    font-size: 0.8em;
}

.custom-table-container .table > tbody > tr:hover[b-1idx63p48s] {
    background-color: rgba(0, 123, 255, 0.05) !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.badge[b-1idx63p48s] {
    border-radius: 30px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-primary[b-1idx63p48s] {
    color: #fff;
    background-color: #4D6F66;
    border-color: #4D6F66;
}

.btn-primary:hover[b-1idx63p48s] {
    background-color: #40614E;
}

/* /Pages/Task/GroupTasksClosure.razor.rz.scp.css */
.client-info[b-2rf1ut47uh] {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.comment-section[b-2rf1ut47uh] {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.status-section[b-2rf1ut47uh] {
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.status-switch:checked[b-2rf1ut47uh] {
    background-color: #198754;
    border-color: #198754;
}

.status-switch:not(:checked)[b-2rf1ut47uh] {
    background-color: #dc3545;
    border-color: #dc3545;
}

.task-row-modified[b-2rf1ut47uh] {
    background-color: rgba(255, 193, 7, 0.1) !important;
    border-left: 4px solid #ffc107;
}

.task-row-success[b-2rf1ut47uh] {
    background-color: rgba(40, 167, 69, 0.1) !important;
    border-left: 4px solid #28a745;
}

.task-row-danger[b-2rf1ut47uh] {
    background-color: rgba(220, 53, 69, 0.1) !important;
    border-left: 4px solid #dc3545;
}

.form-check-input:focus[b-2rf1ut47uh] {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.comment-section textarea[b-2rf1ut47uh] {
    resize: vertical;
    min-height: 60px;
}
/* /Pages/Task/GroupTasksCreateEdit.razor.rz.scp.css */
.required[b-nzecudf8cc]::after {
    content: " *";
    color: #dc3545;
}

.shift-toggle-container[b-nzecudf8cc] {
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    background-color: #f8f9fa;
}

.shift-switch[b-nzecudf8cc] {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

    .shift-switch input[b-nzecudf8cc] {
        opacity: 0;
        width: 0;
        height: 0;
    }

.shift-slider[b-nzecudf8cc] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

    .shift-slider[b-nzecudf8cc]:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .shift-slider[b-nzecudf8cc] {
    background-color: #2196F3;
}

    input:checked + .shift-slider[b-nzecudf8cc]:before {
        transform: translateX(26px);
    }

.client-list-container[b-nzecudf8cc] {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 0.75rem;
    background-color: #f8f9fa;
}

.client-item[b-nzecudf8cc] {
    padding: 0.375rem 0;
    border-bottom: 1px solid #e9ecef;
}

    .client-item:last-child[b-nzecudf8cc] {
        border-bottom: none;
    }

    .client-item:hover[b-nzecudf8cc] {
        background-color: #e9ecef;
        border-radius: 0.25rem;
        margin: 0 -0.25rem;
        padding: 0.375rem 0.25rem;
    }
/* /Pages/Task/TasksSearch.razor.rz.scp.css */
.client-item[b-rev26isl5n]{
    border: 1px solid #c7c7c7;
    border-radius: 10px;
    margin-bottom: 10px;
    margin-right: 5px;
}

    .client-item:hover[b-rev26isl5n] {
        background-color: rgba(255, 194, 15, 0.5) !important;
        transform: translateX(2px);
        transition: all 0.2s ease;
    }

.room-item[b-rev26isl5n]{
    border-radius:10px;
    border: 1px solid #c7c7c7;
    margin-inline:10px;
    align-content:center;
    margin-bottom:10px;
}

.room-item:hover[b-rev26isl5n] {
    background-color: #fff3cd !important;
}

.floor-header:hover[b-rev26isl5n] {
    opacity: 0.8;
}

.floors-container[b-rev26isl5n]::-webkit-scrollbar,
.clients-container[b-rev26isl5n]::-webkit-scrollbar {
    width: 6px;
}

.floors-container[b-rev26isl5n]::-webkit-scrollbar-track,
.clients-container[b-rev26isl5n]::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.floors-container[b-rev26isl5n]::-webkit-scrollbar-thumb,
.clients-container[b-rev26isl5n]::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

    .floors-container[b-rev26isl5n]::-webkit-scrollbar-thumb:hover,
    .clients-container[b-rev26isl5n]::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

@media (max-width: 991.98px) {
    .col-lg-4[b-rev26isl5n], .col-lg-8[b-rev26isl5n] {
        margin-bottom: 1rem;
    }

    .floors-container[b-rev26isl5n], .clients-container[b-rev26isl5n] {
        max-height: 50vh !important;
    }
}
.badge[b-rev26isl5n] {
    color: #40614E;
}

.page-title[b-rev26isl5n] {
    color: #40614E;
    font-weight:600;
}

.floor-name[b-rev26isl5n] {
    color: #40614E;
}

.floor-room-table[b-rev26isl5n] {
    border: none;
}

.floors-container[b-rev26isl5n] {
    border-radius: 10px;
    border: none;
}

.floor-header[b-rev26isl5n] {
    border-radius: 10px;
    border: 1px solid #c7c7c7;
    margin-bottom: 10px;
    margin-right: 5px;
}

    .floor-header:hover[b-rev26isl5n] {
        background-color: rgba(255, 194, 15, 0.5) !important;
        transform: translateX(2px);
        transition: all 0.2s ease;
    }

.card-header[b-rev26isl5n] {
    background-color: white;
    border: none;
    font-size: 20px;
    color: #40614E;
    font-weight:600;
    margin-bottom: 10px;
}

.clinet-name[b-rev26isl5n] {
    color: #40614E !important;
    font-weight: 600;
}

.card-header + .card-body[b-rev26isl5n] {
    border: none;
}
