        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            line-height: 1.1;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .header {
            background: #1a1a1a;
            padding: 30px 0;
            border-bottom: 2px solid #ff0080;
            position: relative;
            overflow: hidden;
        }
        
        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: #ff0080;
            animation: neon-glow 3s ease-in-out infinite;
        }
        
        @keyframes neon-glow {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        @keyframes neon-glow-big {
            0%, 100% { opacity: 1; }
            70% { opacity: 0.7; }
        }
        
        .header h1 {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(45deg, #ff0080, #00d4ff, #00ff88);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            margin-bottom: 20px;
            text-shadow: 0 0 30px rgba(255, 0, 128, 0.3);
        }
        
        .nav {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .nav button {
            padding: 12px 24px;
            border: 2px solid transparent;
            background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
            color: #ffffff;
            border-radius: 25px;
            cursor: pointer;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .nav button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 0, 128, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .nav button:hover::before {
            left: 100%;
        }
        
        .nav button:hover {
            border-color: #ff0080;
            box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
            transform: translateY(-2px);
        }
        
        .nav button.active {
            background: linear-gradient(135deg, #ff0080, #00d4ff);
            color: #fff;
            border-color: #ff0080;
            box-shadow: 0 0 25px rgba(255, 0, 128, 0.5);
        }
        
        .section {
            background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
            padding: 30px;
            border-radius: 20px;
            border: 1px solid #333;
            margin-bottom: 30px;
            display: none;
            position: relative;
            overflow: hidden;
        }
        
        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #ff0080, transparent);
        }
        
        .section.active {
            display: block;
            animation: fadeInUp 0.5s ease;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .section h2 {
            font-size: 2.5rem;
            font-weight: 800;
            background: linear-gradient(45deg, #ff0080, #00d4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #ff0080;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .form-group input, .form-group select {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid #333;
            border-radius: 10px;
            font-size: 16px;
            background: #1a1a1a;
            color: #ffffff;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus, .form-group select:focus {
            outline: none;
            border-color: #ff0080;
            box-shadow: 0 0 20px rgba(255, 0, 128, 0.2);
        }

        .space-bookings-info {
            margin-top: 8px;
            padding: 8px 12px;
            background: rgba(255, 0, 128, 0.1);
            border: 1px solid rgba(255, 0, 128, 0.2);
            border-radius: 6px;
            font-size: 12px;
        }

        /* Calendar Styles */
        .calendar-container {
            background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
            border: 1px solid #ffffff;
            border-radius: 20px;
            padding: 5px;
            margin-bottom: 10px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #333;
            margin-left: 10px;
        }

        .calendar-header h3 {
            color: #fff;
            margin: 0;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .calendar-controls {
            display: flex;
            align-items: center;
            margin-top: 10px;
            margin-right: 10px;
            gap: 10px;
        }

        .week-range {
            color: #ff0080;
            font-weight: 600;
            font-size: 0.95rem;
            min-width: 200px;
            text-align: center;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: 60px repeat(7, 1fr);
            gap: 2px;
            margin-bottom: 15px;
        }

        .time-slot {
            background: #1a1a1a;
            border: 1px solid #333;
            padding: 6px 3px;
            text-align: center;
            font-size: 0.7rem;
            color: #aaa;
            font-weight: 500;
        }

        .day-header {
            background: linear-gradient(135deg, #ff0080, #00d4ff);
            color: #000;
            font-weight: 700;
            text-align: center;
            padding: 5px 3px;
            border-radius: 6px;
            font-size: 0.85rem;
        }

        .calendar-cell {
            background: #1a1a1a;
            border: 1px solid #333;
            min-height: 35px;
            padding: 4px;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 4px;
        }

        /* Past timeslots - greyed out and unclickable */
        .calendar-cell.past {
            background: #141414;
            border-color: #222;
            opacity: 0.45;
            cursor: not-allowed;
            pointer-events: none;
        }

        .calendar-cell:hover {
            background: #2a2a2a;
            border-color: #ff0080;
        }

        .calendar-cell.available {
            background: linear-gradient(135deg, #0a3d0a, #0f4f0f);
            border-color: #00ff88;
        }

        .calendar-cell.booked {
            background: linear-gradient(135deg, #3d0a0a, #4f0f0f);
            border-color: #ff4444;
            cursor: not-allowed;
        }

        .calendar-cell.selected {
            background: linear-gradient(135deg, #3d0a3d, #4f0f4f);
            border-color: #ff0080;
            box-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
        }

        .booking-info {
            position: absolute;
            top: 2px;
            left: 2px;
            right: 2px;
            background: rgba(0, 0, 0, 0.8);
            color: #fff;
            font-size: 0.6rem;
            padding: 2px 3px;
            border-radius: 3px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .calendar-legend {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #aaa;
            font-size: 0.9rem;
        }

        .legend-color {
            width: 16px;
            height: 16px;
            border-radius: 3px;
            border: 1px solid #333;
        }

        .legend-color.available {
            background: linear-gradient(135deg, #0a3d0a, #0f4f0f);
            border-color: #00ff88;
        }

        .legend-color.booked {
            background: linear-gradient(135deg, #3d0a0a, #4f0f0f);
            border-color: #ff4444;
        }

        .legend-color.selected {
            background: linear-gradient(135deg, #3d0a3d, #4f0f4f);
            border-color: #ff0080;
        }

        /* Sidebar Toggle */
        .sidebar-toggle {
            position: absolute;
            top: 20px;
            right: 15px;
            background: linear-gradient(135deg, #ff0080, #00d4ff);
            border: none;
            color: #000;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 2px 8px rgba(255, 0, 128, 0.3);
        }

        .sidebar-toggle:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 15px rgba(255, 0, 128, 0.4);
        }

        @media (max-width: 768px) {
            .sidebar-toggle {
                display: none;
            }
        }

        .toggle-icon {
            font-size: 14px;
            transition: transform 0.3s ease;
        }

        /* Retractable Sidebar */
        .sidebar.collapsed {
            width: 60px;
            transition: width 0.3s ease;
        }

        .sidebar.collapsed .sidebar-header h1,
        .sidebar.collapsed .tagline,
        .sidebar.collapsed .nav-text {
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .sidebar.collapsed .nav-btn {
            justify-content: center;
            padding: 15px;
        }

        .sidebar.collapsed .nav-icon {
            margin-right: 0px;
        }

        .sidebar.collapsed .toggle-icon {
            transform: rotate(180deg);
        }

        /* Simple Mobile Responsive */
        @media (max-width: 768px) {
            .sidebar {
                position: fixed;
                left: -300px;
                top: 0;
                height: 100vh;
                z-index: 1000;
                transition: left 0.3s ease;
            }

            .sidebar.open {
                left: 0;
            }

            .main-content {
                margin-left: 0;
                width: 100%;
            }

            .sidebar-overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.5);
                z-index: 999;
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                pointer-events: none;
            }

            .sidebar-overlay.active {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }
        }

        /* Mobile landscape and portrait */
        @media (max-width: 768px) {
            .top-bar {
                padding: 10px 15px;
                position: sticky;
                top: 0;
                z-index: 100;
            }

            .content-area {
                padding: 10px;
                width: 100%;
                overflow-x: auto;
            }

            .calendar-grid {
                grid-template-columns: 40px repeat(7, 1fr);
                gap: 1px;
                font-size: 0.6rem;
            }

            .calendar-cell {
                min-height: 35px;
                padding: 2px;
            }

            .time-slot {
                font-size: 0.5rem;
                padding: 2px 1px;
            }

            .day-header {
                font-size: 0.6rem;
                padding: 4px 1px;
            }

            .booking-info {
                font-size: 0.4rem;
                padding: 1px 2px;
            }

            .form-row {
                flex-direction: column;
                gap: 10px;
            }

            .form-group {
                width: 100%;
            }

            .table {
                font-size: 0.6rem;
                overflow-x: auto;
            }

            .table th,
            .table td {
                padding: 4px 2px;
                white-space: nowrap;
            }

            .btn {
                padding: 8px 12px;
                font-size: 0.7rem;
                width: 100%;
                margin-bottom: 8px;
            }

            .calendar-legend {
                flex-direction: column;
                gap: 6px;
                margin-top: 10px;
            }

            .legend-item {
                font-size: 0.6rem;
            }

            .sidebar-header h1 {
                font-size: 1.2rem;
            }

            .top-bar h2 {
                font-size: 1.3rem;
            }

            .nav-btn {
                padding: 10px 12px;
                font-size: 0.8rem;
            }

            .calendar-container {
                padding: 15px;
                margin-bottom: 20px;
            }

            .calendar-header h3 {
                font-size: 1.2rem;
            }

            .week-range {
                font-size: 0.9rem;
            }
        }

        /* Small mobile devices */
        @media (max-width: 480px) {
            .calendar-grid {
                grid-template-columns: 35px repeat(7, 1fr);
            }

            .calendar-cell {
                min-height: 30px;
                padding: 1px;
            }

            .time-slot {
                font-size: 0.4rem;
                padding: 1px;
            }

            .day-header {
                font-size: 0.5rem;
                padding: 3px 1px;
            }

            .sidebar-header h1 {
                font-size: 1rem;
            }

            .top-bar h2 {
                font-size: 1.1rem;
            }

            .content-area {
                padding: 8px;
            }

            .top-bar {
                padding: 8px 12px;
            }

            .btn {
                padding: 6px 10px;
                font-size: 0.6rem;
            }

            .form-group label {
                font-size: 0.7rem;
            }

            .form-group input,
            .form-group select {
                padding: 6px 8px;
                font-size: 0.7rem;
            }

            .calendar-container {
                padding: 10px;
                margin-bottom: 15px;
            }

            .calendar-header h3 {
                font-size: 1rem;
            }

            .week-range {
                font-size: 0.8rem;
            }
        }

        /* Extra small devices */
        @media (max-width: 360px) {
            .calendar-grid {
                grid-template-columns: 30px repeat(7, 1fr);
            }

            .calendar-cell {
                min-height: 25px;
            }

            .time-slot {
                font-size: 0.3rem;
            }

            .day-header {
                font-size: 0.4rem;
            }

            .sidebar-header h1 {
                font-size: 0.9rem;
            }

            .top-bar h2 {
                font-size: 1rem;
            }

            .content-area {
                padding: 5px;
            }

            .top-bar {
                padding: 5px 10px;
            }

            .calendar-container {
                padding: 8px;
                margin-bottom: 10px;
            }
        }

        .alert-warning {
            background: rgba(255, 193, 7, 0.1);
            border: 1px solid rgba(255, 193, 7, 0.3);
            color: #ffc107;
            padding: 12px 16px;
            border-radius: 8px;
            margin-bottom: 16px;
        }

        /* Team Management Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }

        .modal-content {
            background: #1a1a1a;
            border: 1px solid rgba(255, 0, 128, 0.3);
            border-radius: 12px;
            width: 90%;
            max-width: 800px;
            max-height: 80vh;
            overflow-y: auto;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            border-bottom: 1px solid rgba(255, 0, 128, 0.2);
        }

        .modal-header h3 {
            color: #ff0080;
            margin: 0;
        }

        .modal-body {
            padding: 20px;
        }

        .btn-sm {
            padding: 4px 8px;
            font-size: 12px;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .btn {
            padding: 8px 16px;
            border: 2px solid transparent;
            border-radius: 25px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 80%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #ff0080, #000000);
            color: #fff;
            border-color: #ff0080;
        }
        .btn-secondary {
            background: linear-gradient(135deg, #ff0080, hsl(0, 0%, 0%));
            color: #fff;
            border-color: #ff0080;
        }
        .btn-primary:hover {
            box-shadow: 0 0 25px rgba(255, 0, 128, 0.5);
            transform: translateY(-2px);
        }
        
        .btn-success {
            background: linear-gradient(135deg, #ff0080, #00d4ff);
            color: #fff;
            border-color: #ff0080;
        }
        
        .btn-success:hover {
            box-shadow: 0 0 25px rgba(255, 0, 128, 0.5);
            transform: translateY(-2px);
        }
        
        .btn-danger {
            background: linear-gradient(135deg, #ff0080, #ff4080);
            color: #fff;
            border-color: #ff0080;
        }
        
        .btn-danger:hover {
            box-shadow: 0 0 25px rgba(255, 0, 128, 0.5);
            transform: translateY(-2px);
        }
        
        .table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
            background: #1a1a1a;
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid #333;
        }
        
        .table th, .table td {
            padding: 20px;
            text-align: left;
            border-bottom: 1px solid #333;
        }
        
        .table th {
            background: #2a2a2a;
            font-weight: 700;
            color: #ff0080;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
        }
        
        .table tr:hover {
            background: rgba(255, 0, 128, 0.05);
        }
        
        .status {
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .status.confirmed {
            background: linear-gradient(135deg, #ff0080, #00d4ff);
            color: #fff;
            box-shadow: 0 0 15px rgba(255, 0, 128, 0.3);
        }
        
        .status.cancelled {
            background: linear-gradient(135deg, #ff0080, #ff4080);
            color: #fff;
            box-shadow: 0 0 15px rgba(255, 0, 128, 0.3);
        }
        
        .status.pending {
            background: linear-gradient(135deg, #ffaa00, #ffcc00);
            color: #000;
            box-shadow: 0 0 15px rgba(255, 170, 0, 0.3);
        }
        
        .alert {
            padding: 20px;
            border-radius: 15px;
            margin-bottom: 30px;
            border: 2px solid;
            font-weight: 600;
        }
        
        .alert-success {
            background: rgba(0, 255, 136, 0.1);
            color: #00ff88;
            border-color: #00ff88;
            box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
        }
        
        .alert-error {
            background: rgba(255, 0, 128, 0.1);
            color: #ff0080;
            border-color: #ff0080;
            box-shadow: 0 0 20px rgba(255, 0, 128, 0.2);
        }
        
        .loading {
            text-align: center;
            padding: 40px;
            color: #00ff88;
            font-size: 18px;
            font-weight: 600;
        }
        
        .hidden {
            display: none;
        }
        
        .neon-glow {
            box-shadow: 0 0 20px rgba(255, 0, 242, 0.3);
        }
        .neon-glow-big {
            box-shadow: 0 0 60px rgba(255, 0, 242, 0.3);
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .nav {
                flex-direction: column;
                align-items: center;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .section {
                padding: 20px;
            }
        }
        
        ::-webkit-scrollbar {
            width: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #1a1a1a;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #00ff88;
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background:  #00ff88;
        }

        .app-layout {
            display: flex;
            min-height: 100vh;
            background: #0a0a0a;
        }


        .sidebar {
            width: 300px;
            background: #1a1a1a;
            border-right: 1px solid rgba(255, 0, 128, 0.2);
            padding: 0;
            position: fixed;
            height: 100vh;
            overflow-y: auto;
            z-index: 1000;
            box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
        }

        .sidebar-header {
            padding: 40px 30px 30px;
            border-bottom: 1px solid rgba(255, 0, 128, 0.1);
            margin-bottom: 20px;
            position: relative;
        }

        .sidebar-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 30px;
            right: 30px;
            height: 1px;
            background:  #ff0080;
        }

        .sidebar-header h1 {
            font-size: 1.6rem;
            font-weight: 800;
            background: #ff0080;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
            text-shadow: 0 0 30px rgba(255, 0, 128, 0.3);
            line-height: 1.2;
        }

        .tagline {
            color: #aaa;
            font-size: 0.85rem;
            margin: 0;
            font-weight: 400;
            opacity: 0.8;
        }

        .sidebar-nav {
            padding: 0 20px 30px;
        }

        .nav-btn {
            width: 100%;
            padding: 10px 16px;
            margin-bottom: 8px;
            border: none;
            background: transparent;
            color: #ccc;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            align-items: center;
            text-align: left;
            border: 1px solid transparent;
        }

        .nav-btn:hover {
            background: rgba(255, 0, 128, 0.1);
            color: #ff0080;
            border-color: rgba(255, 0, 128, 0.2);
            transform: translateX(4px);
        }

        .nav-btn.active {
            background: rgba(255, 0, 128, 0.15);
            color: #ff0080;
            border-color: rgba(255, 0, 128, 0.3);
            box-shadow: 0 4px 15px rgba(255, 0, 128, 0.2);
        }

        .nav-btn.active::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 20px;
            background: #ff0080;
            border-radius: 0 2px 2px 0;
        }

        /* nav-icon styles removed (icons eliminated) */
        .nav-icon { display: none; }

        .sidebar::-webkit-scrollbar {
            width: 4px;
        }

        .sidebar::-webkit-scrollbar-track {
            background: transparent;
        }

        .sidebar::-webkit-scrollbar-thumb {
            background: #ff0080;
            border-radius: 2px;
        }

        .sidebar::-webkit-scrollbar-thumb:hover {
            background:  #ff0080;
        }

        .nav-text {
            flex: 1;
            font-weight: 600;
        }

        .sidebar-footer {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px 30px;
            border-top: 1px solid rgba(255, 0, 128, 0.1);
            background: rgba(0, 0, 0, 0.2);
        }

        .footer-info {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .status-indicator {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #aaa;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #ff0080;
            box-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }

        .main-content {
            flex: 1;
            width: 100%;
            background: #0a0a0a;
            min-height: 100vh;
        }

        .top-bar {
            background: #1a1a1a;
            border-bottom: 1px solid #333;
            padding: 20px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .top-bar-left h2 {
            color: #fff;
            font-size: 1.8rem;
            font-weight: 700;
            margin: 0;
        }

        .mobile-sidebar-toggle {
            display: none;
        }

        @media (max-width: 768px) {
            .mobile-sidebar-toggle {
                display: flex;
                background:  #ff0080;
                border: none;
                color: #000;
                width: 40px;
                height: 40px;
                border-radius: 8px;
                cursor: pointer;
                align-items: center;
                justify-content: center;
                font-weight: bold;
                transition: all 0.3s ease;
                margin-right: 15px;
                box-shadow: 0 2px 8px rgba(255, 0, 128, 0.3);
            }
        }

        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 30px;
            flex: 1;
        }

        .app-logo {
            height: 34px;
            width: auto;
            display: block;
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .app-title {
            color: #fff;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
            background:  #ff0080;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .top-nav {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .top-nav .nav-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            padding: 10px 14px;
            border-radius: 8px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 0;
            width: auto; /* override sidebar width:100% */
            text-align: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .top-nav .nav-btn:hover {
            background: rgba(255, 0, 128, 0.2);
            border-color: #ff0080;
            transform: translateY(-2px);
        }

        .top-nav .nav-btn.active {
            background: linear-gradient(135deg, #ff0080, #ff4080);
            border-color: #ff0080;
            color: #fff;
            box-shadow: 0 4px 12px rgba(255, 0, 128, 0.4);
        }

        /* Ensure no leftover flex expansion from nav-text when icons are removed */
        .top-nav .nav-btn .nav-text { flex: 0 0 auto; margin: 0; }

        /* Remove active left indicator bar for top nav buttons */
        .top-nav .nav-btn.active::before { content: none; display: none; }

        .top-nav .nav-icon {
            font-size: 1.1rem;
        }

        /* Floorplan */
        .floorplan {
            margin: 20px 0 30px 0;
            background: #0f0f0f;
            border: 1px solid #222;
            border-radius: 12px;
            padding: 10px;
        }

        .floorplan svg {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }

        .meeting-room.clickable {
            cursor: pointer;
        }

        .meeting-room.clickable:hover {
            filter: brightness(1.06) drop-shadow(0 0 6px rgba(255, 0, 128, 0.35));
        }

        .floorplan-hint {
            color: #bbb;
            font-size: 0.9rem;
            margin-top: 8px;
        }

        .top-bar-right {
            display: flex;
            gap: 15px;
            position: relative;
            z-index: 1001;
            pointer-events: auto;
        }

        .user-profile {
            display: flex;
            gap: 10px;
            position: relative;
            z-index: 1001;
            pointer-events: auto;
        }

        .profile-btn {
            background: #ff0080;
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
            z-index: 1001;
            pointer-events: auto;
            min-height: 40px;
        }

        .profile-btn:hover {
            background: #ff0080;
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
        }

        .profile-btn[title="Team Members"] {
            background: #ff0080;
            border: 1px solid #ff0080;
            color: #ffffff;
        }

        .profile-btn[title="Team Members"]:hover {
            background:  #00ff88;
            box-shadow: 0 4px 12px rgba(0, 255, 136, 0.4);
        }

        .profile-btn[title="Companies"] {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
        }

        .profile-btn[title="Companies"]:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
        }

        .profile-btn[title="Logout"] {
            background: linear-gradient(135deg, #ff0080, #ff4080);
            border: 1px solid #ff0080;
            color: #fff;
        }

        .profile-btn[title="Logout"]:hover {
            background: linear-gradient(135deg, #ff4080, #ff0080);
            box-shadow: 0 4px 12px rgba(255, 0, 128, 0.4);
        }

        /* profile-icon styles removed (icons eliminated) */
        .profile-icon { display: none; }

        .content-area {
            padding: 20px;
            transition: padding 0.3s ease;
            max-width: 100%;
            overflow-x: auto;
        }

        .sidebar.collapsed ~ .main-content .content-area {
            padding: 30px 20px;
        }

        .sidebar.collapsed ~ .main-content .table {
            font-size: 0.9rem;
        }

        .sidebar.collapsed ~ .main-content .table th,
        .sidebar.collapsed ~ .main-content .table td {
            padding: 8px 6px;
        }

        .sidebar.collapsed ~ .main-content .calendar-grid {
            grid-template-columns: 70px repeat(7, 1fr);
        }

        .sidebar.collapsed ~ .main-content .calendar-cell {
            min-height: 50px;
            padding: 6px;
        }

        .sidebar.collapsed ~ .main-content .form-row {
            flex-wrap: wrap;
            gap: 15px;
        }

        .sidebar.collapsed ~ .main-content .form-group {
            flex: 1;
            min-width: 100px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            display: inline-block;
            margin-right: 10px;
            margin-left: 10px;
            margin-top: 10px;
            margin-bottom: 10px;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            padding: 10px;







        }

        .hidden {
            display: none !important;
        }
    