.modal-hr{
    height: 20px;
    color: #9a9a9a;
}

/* physician dashboard css start */

/* Tailwind overrides and responsive adjustments */
@media (max-width: 640px) {
    .rounded-xl {
        border-radius: 14px;
    }

    .p-6 {
        padding: 1.25rem !important;
    }

    .p-4 {
        padding: 1rem !important;
    }
}

body,
html {
    width: 100% !important;
    overflow-x: hidden !important;
}

.dashboard-wrapper {
    width: 100% !important;
    max-width: 100% !important;
}

/* SIDEBAR TRANSITIONS */
#sidebar {
    transition: width 0.3s, all 0.3s;
}

/* Desktop collapsed sidebar */
.sidebar-collapsed {
    width: 70px !important;
    /* same as mobile icon bar width */
}

.sidebar-collapsed .nav-text,
.sidebar-collapsed h5 {
    display: none !important;
    /* hide labels */
}

.sidebar-collapsed .flex.items-center.gap-3 i {
    margin-right: 0 !important;
    /* remove icon spacing */
    text-align: center;
    width: 100%;
}

.sidebar-collapsed h2,
.sidebar-collapsed h5 {
    display: none;
    /* collapse headers inside sidebar */
}

.sidebar-collapsed nav a {
    justify-content: center;
    /* center icons */
}

/* MOBILE ICON BAR */
#mobileIconBar {
    position: fixed;
    top: 0;
    left: 0;
    width: 56px;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* Sidebar overlay */
#overlay {
    transition: opacity 0.3s ease;
}
@media (max-width: 640px) {
    .quick-actions-footer {
        left: 54px;                 /* shift from left in mobile */
        width: calc(100% - 54px);   /* avoid horizontal overflow */
        margin-left: 0 !important;  /* ignore Tailwind negative ml */
    }
}
@media (max-width: 640px) {
    .quick-actions-footer {
        padding-left: 3.5rem !important;
    }
}

/* ⭐ iPad Pro — FORCE horizontal scroll */
@media (min-width: 768px) and (max-width: 1400px) {
    .quick-actions-scroll-wrapper {
        width: 100vw !important;
        max-width: 100vw !important;
        overflow-x: scroll !important;
        -webkit-overflow-scrolling: touch !important;
    }
}

/* physician dashboard css end */