@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ==========================================================================
   Property & Hostel Management System (PHM) - Premium isolated Design System
   ========================================================================== */

/* HSL Color System & Modern Tokens */
:root {
    --phm-font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Sleek Harmonious LITE Theme Colors (Default) */
    --phm-bg-primary: #f0f4f9;
    --phm-bg-secondary: #ffffff;
    --phm-bg-card: rgba(255, 255, 255, 0.65);
    --phm-bg-card-hover: rgba(255, 255, 255, 0.85);
    
    --phm-text-primary: #0f172a;
    --phm-text-secondary: #475569;
    --phm-text-muted: #94a3b8;
    
    /* Vibrant Accent Colors */
    --phm-accent: hsl(245, 75%, 60%);
    --phm-accent-rgb: 99, 102, 241;
    --phm-accent-hover: hsl(245, 80%, 55%);
    
    --phm-success: hsl(142, 70%, 40%);
    --phm-success-rgb: 16, 185, 129;
    --phm-warning: hsl(35, 92%, 45%);
    --phm-danger: hsl(0, 80%, 50%);
    --phm-info: hsl(190, 90%, 40%);

    /* Premium Glassmorphic details - Adjusted for Lite mode contrast */
    --phm-border: rgba(15, 23, 42, 0.08);
    --phm-border-focus: rgba(99, 102, 241, 0.3);
    --phm-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    --phm-shadow-card: 0 8px 32px 0 rgba(15, 23, 42, 0.05);
    --phm-glass-blur: blur(16px);
    --phm-radius-sm: 8px;
    --phm-radius-md: 14px;
    --phm-radius-lg: 20px;
    
    --phm-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Sleek Harmonious DARK Theme Colors */
.phm-dark-mode {
    --phm-bg-primary: #0a0e1a;
    --phm-bg-secondary: #111827;
    --phm-bg-card: rgba(17, 24, 39, 0.7);
    --phm-bg-card-hover: rgba(31, 41, 55, 0.85);
    
    --phm-text-primary: #f3f4f6;
    --phm-text-secondary: #9ca3af;
    --phm-text-muted: #6b7280;
    
    --phm-accent: hsl(245, 80%, 65%);
    --phm-accent-hover: hsl(245, 85%, 70%);
    
    --phm-success: hsl(142, 70%, 45%);
    --phm-warning: hsl(35, 92%, 50%);
    --phm-danger: hsl(0, 80%, 55%);
    --phm-info: hsl(190, 90%, 45%);

    --phm-border: rgba(255, 255, 255, 0.08);
    --phm-border-focus: rgba(99, 102, 241, 0.4);
    --phm-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --phm-shadow-card: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Force matching dark corporate background on all outer theme page containers to eliminate light gaps */
html, body, 
.site,
.site-content,
.site-main,
.page-content,
.entry-content,
.entry,
article,
header,
footer,
.site-header,
.site-footer,
.elementor,
.elementor-section,
.elementor-container,
.elementor-column,
.elementor-widget-wrap,
#content,
#main {
    background-color: var(--phm-bg-primary) !important; /* Force matching theme background dynamically */
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
}

#wpadminbar {
    display: none !important;
    height: 0 !important;
}

.phm-app-wrapper {
    font-family: var(--phm-font-family);
    background-color: var(--phm-bg-primary);
    color: var(--phm-text-primary);
    border-radius: 0 !important;
    padding: 20px;
    border: none !important;
    overflow: visible !important;
    position: relative !important;
    box-sizing: border-box;
    min-height: 100vh;
    width: 100vw !important;
    left: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
}

.phm-app-wrapper * {
    box-sizing: border-box;
    transition: var(--phm-transition);
}

.phm-initial-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.phm-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--phm-border);
    border-top: 4px solid var(--phm-accent);
    border-radius: 50%;
    animation: phm-spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes phm-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Typography elements */
.phm-app-wrapper h1, .phm-app-wrapper h2, .phm-app-wrapper h3, .phm-app-wrapper h4 {
    color: var(--phm-text-primary);
    margin-top: 0;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.phm-app-wrapper h1 { font-size: 2.2rem; margin-bottom: 24px; }
.phm-app-wrapper h2 { font-size: 1.6rem; margin-bottom: 18px; }
.phm-app-wrapper h3 { font-size: 1.25rem; margin-bottom: 12px; }

.phm-app-wrapper p {
    color: var(--phm-text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Glassmorphism Cards */
.phm-card {
    background: var(--phm-bg-card);
    backdrop-filter: var(--phm-glass-blur);
    -webkit-backdrop-filter: var(--phm-glass-blur);
    border: 1px solid var(--phm-border);
    border-radius: var(--phm-radius-md);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--phm-shadow-card);
    position: relative;
    overflow: hidden;
}

/* Premium Apple Glassmorphism Card */
.phm-glass-card {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.125);
    border-radius: var(--phm-radius-md);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06), inset 0 1px 1px rgba(255, 255, 255, 0.2);
    transition: var(--phm-transition);
}

.phm-dark-mode .phm-glass-card {
    background: rgba(17, 24, 39, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.phm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--phm-accent), var(--phm-info));
    opacity: 0;
}

.phm-card:hover {
    background: var(--phm-bg-card-hover);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.phm-card:hover::before {
    opacity: 1;
}

/* Responsive Grid System */
.phm-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}

.phm-grid-2 { grid-template-columns: repeat(2, 1fr); }
.phm-grid-3 { grid-template-columns: repeat(3, 1fr); }
.phm-grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .phm-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .phm-grid-3, .phm-grid-2, .phm-grid-4 { grid-template-columns: 1fr; }
}

/* Form Styling & Sleek Inputs */
.phm-form-group {
    margin-bottom: 20px;
}

.phm-form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--phm-text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.phm-input, .phm-textarea, .phm-select {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--phm-border);
    color: var(--phm-text-primary);
    padding: 12px 16px;
    border-radius: var(--phm-radius-sm);
    font-family: var(--phm-font-family);
    font-size: 1rem;
    outline: none;
}

.phm-input:focus, .phm-textarea:focus, .phm-select:focus {
    border-color: var(--phm-accent);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px var(--phm-border-focus);
}

.phm-textarea {
    resize: vertical;
    min-height: 100px;
}

.phm-select option {
    background-color: var(--phm-bg-secondary);
    color: var(--phm-text-primary);
}

/* Action Buttons */
.phm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--phm-radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    outline: none;
    text-decoration: none;
    font-family: var(--phm-font-family);
    gap: 8px;
}

.phm-btn-primary {
    background: linear-gradient(135deg, var(--phm-accent), #4f46e5);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.phm-btn-primary:hover {
    background: linear-gradient(135deg, var(--phm-accent-hover), #4338ca);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
}

.phm-btn-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--phm-border);
    color: var(--phm-text-primary) !important;
}

.phm-btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.phm-btn-success {
    background: linear-gradient(135deg, var(--phm-success), #059669);
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.phm-btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.phm-btn-danger {
    background: linear-gradient(135deg, var(--phm-danger), #dc2626);
    color: #fff !important;
}

.phm-btn-danger:hover {
    transform: translateY(-2px);
}

.phm-btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* ==========================================================================
   Premium Split-Screen Login Redesign (Apple Glassmorphism Layout)
   ========================================================================== */
.phm-split-login-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    max-width: 1050px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    overflow: hidden;
    min-height: 560px;
    transition: var(--phm-transition);
}

.phm-dark-mode .phm-split-login-container {
    background: rgba(17, 24, 39, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

/* Left Column: Form */
.phm-login-left {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.phm-login-header-custom {
    margin-bottom: 35px;
}

.phm-login-title {
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--phm-text-primary);
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.phm-login-subtitle {
    font-size: 1rem;
    color: var(--phm-text-secondary);
    margin: 0;
}

.phm-form-group-custom {
    margin-bottom: 24px;
}

.phm-form-group-custom label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--phm-text-secondary);
    margin-bottom: 10px;
}

/* Input Icon Overlay */
.phm-input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.phm-input-icon {
    position: absolute;
    left: 16px;
    width: 24px;
    color: var(--phm-text-muted);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    text-align: center;
    line-height: 1;
}

.phm-input-custom {
    width: 100% !important;
    padding: 15px 16px 15px 54px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid var(--phm-border) !important;
    font-family: var(--phm-font-family);
    color: var(--phm-text-primary) !important;
    font-size: 1rem !important;
    outline: none !important;
    transition: var(--phm-transition);
}

.phm-input-custom::placeholder {
    color: var(--phm-text-muted) !important;
    opacity: 0.8 !important;
}

.phm-input-custom:focus {
    border-color: #4f46e5 !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15) !important;
}

#phm-app-container:not(.phm-dark-mode) .phm-input-custom {
    background-color: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(15, 23, 42, 0.15) !important;
    color: #0f172a !important;
}

/* Deep-indigo Submit button */
.phm-btn-submit-custom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #4f46e5;
    color: #ffffff;
    border: none;
    outline: none;
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    font-family: var(--phm-font-family);
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 10px;
}

.phm-btn-submit-custom:hover {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.55);
}

.phm-btn-submit-custom:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.4);
}

.phm-btn-arrow {
    font-size: 1.1rem;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.phm-btn-submit-custom:hover .phm-btn-arrow {
    transform: translateX(4px);
}

/* Right Column: Branding */
.phm-login-right {
    background: linear-gradient(135deg, #4f46e5 0%, #6d28d9 100%);
    color: #ffffff !important;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.phm-login-right::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.phm-login-right-content {
    position: relative;
    z-index: 2;
}

.phm-login-briefcase-icon {
    width: 76px;
    height: 76px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.phm-login-briefcase-icon svg {
    color: #ffffff;
}

.phm-login-promo-title {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #ffffff !important;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.phm-login-promo-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85) !important;
    margin: 0;
    font-weight: 400;
}

/* Responsiveness for split login */
@media (max-width: 900px) {
    .phm-split-login-container {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 20px auto;
        border-radius: 20px;
    }
    
    .phm-login-left {
        padding: 40px 30px;
    }
    
    .phm-login-right {
        padding: 40px 30px;
    }
    
    .phm-login-title {
        font-size: 1.9rem;
    }
    
    .phm-login-promo-title {
        font-size: 1.6rem;
    }
    
    .phm-login-briefcase-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
}

/* Glassy Hamburger Icon Button */
.phm-hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--phm-border);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    gap: 4px;
    cursor: pointer;
    z-index: 100001;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
}

.phm-hamburger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--phm-text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hamburger open transform effects */
.phm-hamburger-btn.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.phm-hamburger-btn.open span:nth-child(2) {
    opacity: 0;
}

.phm-hamburger-btn.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Glassy Overlay Backdrop */
.phm-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.phm-sidebar-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Navigation Layout */
.phm-navbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--phm-border);
    padding: 16px 20px !important;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
    background: rgba(17, 24, 39, 0.75) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

#phm-app-container:not(.phm-dark-mode) .phm-navbar {
    background: rgba(255, 255, 255, 0.85) !important;
}

.phm-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--phm-accent), var(--phm-info));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.phm-nav-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phm-user-badge {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: var(--phm-radius-sm);
    font-size: 0.875rem;
    border: 1px solid var(--phm-border);
}

.phm-user-role-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
}

.phm-role-super_admin { background-color: var(--phm-danger); color: #fff; }
.phm-role-phm_owner { background-color: var(--phm-accent); color: #fff; }
.phm-role-phm_staff { background-color: var(--phm-info); color: #fff; }
.phm-role-phm_tenant { background-color: var(--phm-success); color: #fff; }

/* Dashboard Tabs Layout */
.phm-dashboard-layout {
    display: flex;
    gap: 30px;
}

.phm-sidebar {
    width: 260px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phm-content-pane {
    flex-grow: 1;
    min-width: 0; /* Prevents overflow */
}

@media (max-width: 900px) {
    .phm-dashboard-layout {
        flex-direction: column;
    }
    
    .phm-hamburger-btn {
        display: flex !important;
    }

    /* Fixed single-row mobile/tablet header layout */
    .phm-navbar {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 10px 14px !important;
        gap: 10px !important;
        flex-wrap: nowrap !important;
        padding-bottom: 12px !important;
        margin-bottom: 20px !important;
    }

    .phm-nav-user {
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .phm-user-badge {
        display: none !important; /* Hide user badge in top-bar on screens < 900px to prevent row wrapping and force single-line header */
    }

    /* Sliding Drawer Sidebar */
    .phm-sidebar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        width: 280px !important;
        height: 100vh !important;
        z-index: 100000 !important;
        background: rgba(255, 255, 255, 0.45) !important;
        backdrop-filter: blur(25px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(25px) saturate(180%) !important;
        border-right: 1px solid rgba(255, 255, 255, 0.125) !important;
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.15) !important;
        transform: translateX(-100%) !important;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        flex-direction: column !important;
        align-items: stretch !important;
        overflow-y: auto !important;
        padding: 80px 20px 20px 20px !important;
        scrollbar-width: none !important;
    }
    
    .phm-dark-mode .phm-sidebar {
        background: rgba(17, 24, 39, 0.6) !important;
        border-right: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.3) !important;
    }

    .phm-sidebar.mobile-active {
        transform: translateX(0) !important;
    }
    
    .phm-sidebar::-webkit-scrollbar {
        display: none !important;
    }
    
    .phm-nav-item {
        white-space: normal !important;
        flex-shrink: 1 !important;
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
    }
}

@media (max-width: 600px) {
    .phm-app-wrapper {
        padding: 12px;
        margin: 0 !important;
        border-radius: 0 !important;
    }
    .phm-card {
        padding: 16px;
        margin-bottom: 16px;
    }
    .phm-navbar {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 10px 14px !important;
        gap: 10px !important;
        flex-wrap: nowrap !important;
    }
    .phm-nav-user {
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important;
    }
    .phm-user-badge {
        display: none !important; /* Hide role badge pill on mobile to keep theme toggle and notification bell on the right */
    }
    .phm-user-role-tag {
        font-size: 0.72rem !important;
        margin-left: 0 !important;
        padding: 4px 8px !important;
        border-radius: 6px !important;
    }
    .phm-logout-trigger {
        width: auto !important;
    }
    .phm-table th, .phm-table td {
        padding: 10px 12px;
        font-size: 0.82rem;
    }
    .phm-table-responsive {
        -webkit-overflow-scrolling: touch;
    }
    .phm-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
}

.phm-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: var(--phm-radius-sm);
    color: var(--phm-text-secondary);
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
}

.phm-nav-item:hover, .phm-nav-item.active {
    background-color: rgba(99, 102, 241, 0.1);
    color: var(--phm-accent);
    border-color: rgba(99, 102, 241, 0.2);
}

.phm-nav-item.active {
    background-color: var(--phm-accent);
    color: #fff;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

/* Stat Cards */
.phm-stat-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: default;
}

.phm-stat-info {
    display: flex;
    flex-direction: column;
}

.phm-stat-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--phm-text-secondary);
    margin-bottom: 6px;
}

.phm-stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--phm-text-primary);
}

.phm-stat-icon {
    font-size: 2.2rem;
    opacity: 0.7;
    color: var(--phm-accent);
    flex-shrink: 0;
}

/* Premium Dark Tables */
.phm-table-responsive {
    overflow-x: auto;
    margin-bottom: 24px;
    border-radius: var(--phm-radius-md);
    border: 1px solid var(--phm-border);
}

.phm-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background-color: var(--phm-bg-card);
}

.phm-table th, .phm-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--phm-border);
}

.phm-table th {
    background-color: rgba(255, 255, 255, 0.02);
    font-weight: 700;
    color: var(--phm-text-primary);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

.phm-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

/* Table Badge Status indicators */
.phm-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.phm-badge-success { background-color: rgba(16, 185, 129, 0.15); color: var(--phm-success); }
.phm-badge-warning { background-color: rgba(245, 158, 11, 0.15); color: var(--phm-warning); }
.phm-badge-danger { background-color: rgba(239, 68, 68, 0.15); color: var(--phm-danger); }
.phm-badge-info { background-color: rgba(59, 130, 246, 0.15); color: var(--phm-info); }

/* Custom Modal popup */
.phm-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: var(--phm-glass-blur);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.phm-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.phm-modal-container {
    background-color: var(--phm-bg-secondary);
    border: 1px solid var(--phm-border);
    border-radius: var(--phm-radius-lg);
    width: 90%;
    max-width: 680px;
    max-height: 85%;
    overflow-y: auto;
    padding: 30px;
    box-shadow: var(--phm-shadow);
    transform: scale(0.9);
    transition: transform 0.25s ease;
}

.phm-modal.active .phm-modal-container {
    transform: scale(1);
}

.phm-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--phm-border);
    padding-bottom: 15px;
}

.phm-modal-close {
    background: none;
    border: none;
    color: var(--phm-text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Modern Multi-Step Form Wizard */
.phm-wizard-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.phm-wizard-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--phm-border);
    z-index: 1;
    transform: translateY(-50%);
}

.phm-wizard-step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--phm-bg-secondary);
    border: 2px solid var(--phm-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--phm-text-secondary);
    position: relative;
    z-index: 2;
}

.phm-wizard-step.active {
    border-color: var(--phm-accent);
    background-color: var(--phm-accent);
    color: #fff;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.phm-wizard-step.completed {
    border-color: var(--phm-success);
    background-color: var(--phm-success);
    color: #fff;
}

.phm-wizard-pane {
    display: none;
}

.phm-wizard-pane.active {
    display: block;
    animation: phm-fade-in 0.4s ease;
}

@keyframes phm-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Toast Notifications */
.phm-toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phm-toast {
    background-color: var(--phm-bg-secondary);
    border: 1px solid var(--phm-border);
    border-left: 5px solid var(--phm-accent);
    padding: 16px 24px;
    border-radius: var(--phm-radius-sm);
    color: var(--phm-text-primary);
    box-shadow: var(--phm-shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: phm-toast-slide 0.3s ease forwards;
}

@keyframes phm-toast-slide {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.phm-toast-success { border-left-color: var(--phm-success); }
.phm-toast-error { border-left-color: var(--phm-danger); }
.phm-toast-warning { border-left-color: var(--phm-warning); }
.phm-toast-info { border-left-color: var(--phm-info); }

/* Rent calculation pricing panels */
.phm-pricing-card {
    background-color: rgba(99, 102, 241, 0.05);
    border: 1px dashed rgba(99, 102, 241, 0.3);
    border-radius: var(--phm-radius-sm);
    padding: 15px;
    margin-top: 15px;
}

.phm-pricing-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.phm-pricing-row.total {
    border-top: 1px solid var(--phm-border);
    padding-top: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--phm-success);
}

/* Copy UPI Code button styles */
.phm-copy-upi-btn {
    margin-left: 10px;
    padding: 4px 8px;
    font-size: 0.75rem;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--phm-border);
    border-radius: 4px;
    color: var(--phm-text-primary);
}

/* Support ticket dialog */
.phm-ticket-comments {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
    max-height: 350px;
    overflow-y: auto;
    padding-right: 10px;
}

.phm-ticket-comment {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--phm-border);
    border-radius: var(--phm-radius-sm);
    padding: 12px 16px;
}

.phm-ticket-comment.staff-owner {
    border-color: rgba(99, 102, 241, 0.3);
    background-color: rgba(99, 102, 241, 0.02);
    align-self: flex-end;
}

.phm-ticket-comment-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--phm-text-secondary);
    margin-bottom: 6px;
    font-weight: 600;
}

/* Printing Template for Invoices/Receipts */
@media print {
    body {
        background: #fff !important;
        color: #000 !important;
    }
    body.phm-printing-active > :not(#phm-print-area) {
        display: none !important;
    }
    body.phm-printing-active > #phm-print-area {
        display: block !important;
        visibility: visible !important;
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        background: #fff !important;
        color: #000 !important;
        padding: 30px !important;
    }
    body.phm-printing-active > #phm-print-area * {
        visibility: visible !important;
        color: #000 !important;
        background: transparent !important;
    }
    body.phm-printing-active > #phm-print-area table,
    body.phm-printing-active > #phm-print-area tr,
    body.phm-printing-active > #phm-print-area th,
    body.phm-printing-active > #phm-print-area td {
        display: table !important;
        visibility: visible !important;
        border-bottom: 1px solid #e5e7eb !important;
    }
    body.phm-printing-active > #phm-print-area tr {
        display: table-row !important;
    }
    body.phm-printing-active > #phm-print-area th,
    body.phm-printing-active > #phm-print-area td {
        display: table-cell !important;
        padding: 10px !important;
    }
    body.phm-printing-active > #phm-print-area th {
        background: #f9fafb !important;
        font-weight: bold !important;
    }
}

.phm-printable-invoice {
    background: #fff;
    color: #111827;
    padding: 30px;
    border-radius: var(--phm-radius-md);
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.phm-invoice-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.phm-invoice-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.phm-invoice-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.phm-invoice-table th, .phm-invoice-table td {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

.phm-invoice-table th {
    background-color: #f9fafb;
    font-weight: 700;
}

.phm-invoice-total {
    text-align: right;
    font-size: 1.3rem;
    font-weight: 800;
    color: #10b981;
}

/* Responsive Grid Overrides for Column asymmetry */
.phm-owners-grid, .phm-staff-grid, .phm-support-grid {
    grid-template-columns: 1.2fr 0.8fr;
}
.phm-renew-grid {
    grid-template-columns: 1.1fr 0.9fr;
}

@media (max-width: 768px) {
    .phm-owners-grid, .phm-staff-grid, .phm-renew-grid, .phm-support-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   Additions: Lite mode input visibility, Document viewer, Scroll & Print
   ========================================================================== */

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Lite mode input visibility fix - isolated so it does not affect dark mode */
#phm-app-container:not(.phm-dark-mode) .phm-input, 
#phm-app-container:not(.phm-dark-mode) .phm-textarea, 
#phm-app-container:not(.phm-dark-mode) .phm-select {
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.15);
    color: #0f172a;
}

/* Premium sleek scrollbars for all scrollable elements in PHM wrapper */
.phm-app-wrapper ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.phm-app-wrapper ::-webkit-scrollbar-track {
    background: transparent;
}
.phm-app-wrapper ::-webkit-scrollbar-thumb {
    background: var(--phm-border);
    border-radius: 99px;
}
.phm-app-wrapper ::-webkit-scrollbar-thumb:hover {
    background: var(--phm-accent);
}

/* Document viewer modal */
.phm-doc-viewer-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.92);
    z-index: 9999999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}
.phm-doc-viewer-modal img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.phm-doc-viewer-modal iframe {
    width: 90vw;
    height: 80vh;
    border: none;
    border-radius: 8px;
}
.phm-doc-viewer-close {
    color: #fff;
    font-size: 1.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
}

/* Print isolation: hide all siblings except the print area when not in @media print */
body.phm-printing-active > :not(#phm-print-area) {
    display: none !important;
}
body.phm-printing-active > #phm-print-area {
    display: block !important;
}

/* Premium Tactile 3D Theme Toggle Trigger */
.phm-theme-toggle-trigger {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    font-size: 1.45rem !important;
    cursor: pointer;
    background: var(--phm-bg-secondary) !important;
    border: 1px solid var(--phm-border) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06), inset 0 -3px 0px rgba(0, 0, 0, 0.12) !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    user-select: none;
}

.phm-theme-toggle-trigger:hover {
    transform: translateY(-3px) scale(1.08) !important;
    box-shadow: 0 8px 16px -2px rgba(99, 102, 241, 0.25), 0 4px 6px -2px rgba(0, 0, 0, 0.05), inset 0 -3px 0px rgba(0, 0, 0, 0.12) !important;
    background: var(--phm-bg-card-hover) !important;
}

.phm-theme-toggle-trigger:active {
    transform: translateY(1px) scale(0.95) !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), inset 0 2px 3px rgba(0, 0, 0, 0.15) !important;
}

/* Premium Light Mode (Lite) Contrast & Visual Polish Overrides */
#phm-app-container:not(.phm-dark-mode) .phm-table th {
    background-color: rgba(15, 23, 42, 0.03) !important;
    border-bottom: 2px solid rgba(15, 23, 42, 0.08) !important;
    color: #1e293b !important;
}

#phm-app-container:not(.phm-dark-mode) .phm-table tbody tr:hover {
    background-color: rgba(15, 23, 42, 0.015) !important;
}

#phm-app-container:not(.phm-dark-mode) .phm-user-badge {
    background-color: rgba(15, 23, 42, 0.04) !important;
    color: #1e293b !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
}

#phm-app-container:not(.phm-dark-mode) .phm-pricing-card {
    background-color: rgba(99, 102, 241, 0.04) !important;
    border: 1px dashed rgba(99, 102, 241, 0.25) !important;
}

#phm-app-container:not(.phm-dark-mode) .phm-card {
    background: rgba(255, 255, 255, 0.85) !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02) !important;
}

#phm-app-container:not(.phm-dark-mode) .phm-card:hover {
    background: #ffffff !important;
    border-color: rgba(99, 102, 241, 0.15) !important;
}

/* ==========================================================================
   Comprehensive Mobile & Tablet UI/UX Visual Enhancements (Premium Polish)
   ========================================================================== */

@media (max-width: 1024px) {
    .phm-app-wrapper {
        width: 100% !important;
        left: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 15px !important;
    }
}

@media (max-width: 900px) {
    .phm-split-login-container {
        max-width: 480px !important;
        margin: 10px auto 30px auto !important;
        border-radius: 24px !important;
        overflow: hidden !important;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
    }
    
    .phm-login-left {
        padding: 40px 24px !important;
    }
    
    .phm-login-right {
        padding: 40px 24px !important;
    }
    
    .phm-login-title {
        font-size: 2.1rem !important;
        text-align: center;
    }
    
    .phm-login-subtitle {
        text-align: center;
        font-size: 0.95rem;
    }

    /* Modal dialog styling on tablet */
    .phm-modal-container {
        width: 95% !important;
        padding: 20px !important;
        max-height: 90% !important;
    }
}

@media (max-width: 600px) {
    /* Premium visual overrides for standard mobile viewports */
    .phm-app-wrapper {
        padding: 12px 8px !important;
    }

    .phm-card {
        padding: 18px 16px !important;
        border-radius: 16px !important;
        margin-bottom: 16px !important;
        border: 1px solid var(--phm-border) !important;
    }

    /* Modern responsive table polish */
    .phm-table-responsive {
        border-radius: 12px !important;
        border: 1px solid var(--phm-border) !important;
        overflow-x: auto !important;
        margin-top: 10px;
    }

    .phm-table th, .phm-table td {
        padding: 12px 14px !important;
        font-size: 0.85rem !important;
        white-space: nowrap !important;
    }

    /* Form UI/UX Touch Targets */
    .phm-form-group {
        margin-bottom: 16px !important;
    }

    .phm-input, .phm-textarea, .phm-select {
        border-radius: 10px !important;
        padding: 12px 14px !important;
        font-size: 0.95rem !important;
    }

    .phm-input-custom {
        border-radius: 12px !important;
        padding: 14px 16px 14px 54px !important;
    }

    /* Responsive Button sizes */
    .phm-btn {
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
        border-radius: 10px !important;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 100%; /* Make buttons full-width for easier thumb tapping */
    }

    .phm-btn-sm {
        width: auto !important; /* Keep small action buttons compact */
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
    }

    /* Navigation header improvements */
    .phm-navbar {
        padding-bottom: 15px !important;
        margin-bottom: 20px !important;
        border-bottom: 1px solid var(--phm-border) !important;
    }

    .phm-nav-brand {
        font-size: 1.3rem !important;
    }

    /* Pricing card / key-value list responsive grid */
    .phm-pricing-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 4px;
        padding: 10px 0 !important;
    }

    .phm-pricing-row span {
        font-size: 0.8rem;
    }

    .phm-pricing-row strong {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   Property Booking Calendar Component Styles
   ========================================================================== */
.phm-calendar-day {
    position: relative;
    box-sizing: border-box;
    outline: none;
}

.phm-calendar-day:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.phm-calendar-day.phm-calendar-active-day {
    border: 2px solid var(--phm-accent) !important;
    background: rgba(79, 70, 229, 0.12) !important;
    box-shadow: 0 0 15px rgba(79, 70, 229, 0.25) !important;
}

.phm-calendar-indicator-pill {
    transition: transform 0.2s ease, filter 0.2s ease;
}

.phm-calendar-indicator-pill:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

/* Responsive calendar adjustments */
@media (max-width: 900px) {
    .phm-calendar-layout-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .phm-calendar-sidebar {
        min-height: auto !important;
    }
}

@media (max-width: 600px) {
    .phm-calendar-day {
        min-height: 60px !important;
        padding: 4px !important;
        border-radius: 8px !important;
    }
    
    .phm-calendar-indicator-pill {
        font-size: 0.55rem !important;
        padding: 1px 3px !important;
        border-radius: 3px !important;
    }
    
    .phm-day-number {
        font-size: 0.75rem !important;
    }
}

/* Premium Sidebar User Profile Header */
.phm-sidebar-profile-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--phm-border);
    background: rgba(255, 255, 255, 0.02);
}

.phm-sidebar-profile-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--phm-accent), var(--phm-info));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.phm-sidebar-profile-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.phm-sidebar-profile-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--phm-text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Premium Profile Picture Circle & Hover Transitions */
.phm-profile-avatar-preview-wrapper {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 12px auto;
    border-radius: 50%;
    border: 3px solid var(--phm-border);
    box-shadow: var(--phm-shadow-card);
    transition: var(--phm-transition);
}

.phm-profile-avatar-preview-wrapper:hover {
    border-color: var(--phm-accent);
    transform: scale(1.02);
}

.phm-profile-avatar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0 !important;
    transition: var(--phm-transition) !important;
    cursor: pointer;
    color: #ffffff !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    border-radius: 50%;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.phm-profile-avatar-preview-wrapper:hover .phm-profile-avatar-overlay {
    opacity: 1 !important;
}

.phm-sidebar-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

/* Force Notification Bell Trigger Styling to purge any cached/external pink or customizer backgrounds */
.phm-notification-bell-trigger,
button.phm-notification-bell-trigger {
    background-color: rgba(255, 255, 255, 0.08) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid var(--phm-border) !important;
    color: var(--phm-text-primary) !important;
    box-shadow: none !important;
    transition: var(--phm-transition) !important;
}

.phm-notification-bell-trigger:hover,
button.phm-notification-bell-trigger:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-1px) !important;
}

#phm-app-container:not(.phm-dark-mode) .phm-notification-bell-trigger,
#phm-app-container:not(.phm-dark-mode) button.phm-notification-bell-trigger {
    background-color: rgba(15, 23, 42, 0.04) !important;
    background: rgba(15, 23, 42, 0.04) !important;
    border: 1px solid rgba(15, 23, 42, 0.08) !important;
    color: var(--phm-text-primary) !important;
}

#phm-app-container:not(.phm-dark-mode) .phm-notification-bell-trigger:hover,
#phm-app-container:not(.phm-dark-mode) button.phm-notification-bell-trigger:hover {
    background-color: rgba(15, 23, 42, 0.08) !important;
    background: rgba(15, 23, 42, 0.08) !important;
}


