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

        /* CSS Reset */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* Base styles */
        body {
            font-family: 'Inter', -apple-system, system-ui, sans-serif;
            background-color: #f8f9fc;
            color: #333;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
        }

        /* Layout */
        .app-container {
            display: flex;
            min-height: 100vh;
        }

        /* Sidebar */
        .sidebar {
            width: 175px;
            background-color: white;
            border-right: 1px solid #e2e8f0;
            height: 100vh;
            position: fixed;
            display: flex;
            flex-direction: column;
            z-index: 10;
        }

        .sidebar-header {
            padding: 1rem;
            border-bottom: 1px solid #e2e8f0;
        }

        .logo {
            font-size: 1.25rem;
            font-weight: 700;
            color: #090667;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: #db793d;
        }

        .sidebar-nav {
            margin-top: 1rem;
            flex: 1;
        }

        .nav-list {
            list-style: none;
        }

        .nav-item {
            margin-bottom: 0.25rem;
        }

        .nav-link {
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            text-decoration: none;
            color: #4b5563;
            font-weight: 500;
            font-size: 0.875rem;
            transition: all 0.2s;
        }

        .nav-link:hover {
            background-color: #f3f4f6;
        }

        .nav-link.active {
            background-color: #090667;
            color: white;
        }

        .nav-link.active svg {
            color: white;
        }

        .nav-link svg {
            width: 1.25rem;
            height: 1.25rem;
            margin-right: 0.75rem;
            color: #090667;
        }

        .sidebar-footer {
            padding: 1rem;
            margin-top: auto;
            border-top: 1px solid #e2e8f0;
        }

        .user-info {
            display: flex;
            align-items: center;
        }

        .user-avatar {
            width: 2rem;
            height: 2rem;
            border-radius: 9999px;
            background-color: #db793d;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            font-size: 0.875rem;
        }

        .user-details {
            margin-left: 0.75rem;
        }

        .user-name {
            font-size: 0.875rem;
            font-weight: 500;
            color: #1f2937;
        }

        .logout-link {
            display: flex;
            align-items: center;
            margin-top: 1rem;
            color: #ef4444;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .logout-link svg {
            width: 1rem;
            height: 1rem;
            margin-right: 0.5rem;
        }

        /* Main Content */
        .main-content {
            flex: 1;
            margin-left: 175px;
            padding: 1.5rem;
        }

        /* Page Header */
        .page-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .page-title-section h1 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.25rem;
        }

        .page-subtitle {
            font-size: 0.875rem;
            color: #6b7280;
        }

        /* Search and Filters */
        .header-actions {
            display: flex;
            gap: 0.75rem;
        }

        .search-box {
            position: relative;
        }

        .search-input {
            padding: 0.5rem 0.75rem 0.5rem 2.25rem;
            border: 1px solid #d1d5db;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            min-width: 240px;
            color: #1f2937;
        }

        .search-input:focus {
            outline: none;
            border-color: #db793d;
            box-shadow: 0 0 0 2px rgba(219, 121, 61, 0.1);
        }

        .search-icon {
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            font-size: 0.875rem;
        }

        /* Filter Bar */
        .filter-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            background-color: white;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        .filter-options {
            display: flex;
            gap: 0.75rem;
        }

        .filter-select {
            padding: 0.5rem 2rem 0.5rem 0.75rem;
            border: 1px solid #e2e8f0;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            color: #4b5563;
            background-color: white;
            appearance: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 0.5rem center;
            background-repeat: no-repeat;
            background-size: 1.5em 1.5em;
            cursor: pointer;
            outline: none;
        }

        .filter-select:focus {
            border-color: #db793d;
            box-shadow: 0 0 0 2px rgba(219, 121, 61, 0.1);
        }

        /* Allotment Table */
        .allotment-table-container {
            background-color: white;
            border-radius: 0.5rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .allotment-table {
            width: 100%;
            border-collapse: collapse;
        }

        .allotment-table th,
        .allotment-table td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }

        .allotment-table th {
            background-color: #f8f9fc;
            font-weight: 600;
            color: #6b7280;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .allotment-table tr:last-child td {
            border-bottom: none;
        }

        .allotment-table tr:hover td {
            background-color: #f9fafb;
        }

        .client-info {
            display: flex;
            align-items: center;
        }

        .client-avatar {
            width: 2rem;
            height: 2rem;
            border-radius: 9999px;
            background-color: #e5e7eb;
            color: #4b5563;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            font-size: 0.75rem;
            margin-right: 0.75rem;
        }

        .client-name {
            font-weight: 500;
            color: #1f2937;
            font-size: 0.875rem;
        }

        .client-pan {
            color: #6b7280;
            font-size: 0.75rem;
        }

        .ipo-name {
            font-weight: 500;
            color: #1f2937;
            font-size: 0.875rem;
        }

        .ipo-details {
            color: #6b7280;
            font-size: 0.75rem;
        }

        .bid-amount {
            font-weight: 500;
            color: #1f2937;
            font-size: 0.875rem;
        }

        .bid-quantity {
            color: #6b7280;
            font-size: 0.75rem;
        }

        .allotment-date {
            font-size: 0.875rem;
            color: #4b5563;
        }

        .allotment-status {
            display: inline-flex;
            align-items: center;
            padding: 0.25rem 0.625rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .status-pending {
            background-color: #fef3c7;
            color: #b45309;
        }

        .status-approved {
            background-color: #d1fae5;
            color: #065f46;
        }

        .status-rejected {
            background-color: #fee2e2;
            color: #b91c1c;
        }

        .status-partial {
            background-color: #dbeafe;
            color: #1e40af;
        }

        .action-btn {
            padding: 0.375rem;
            background: none;
            border: none;
            border-radius: 0.25rem;
            color: #6b7280;
            cursor: pointer;
            transition: all 0.2s;
        }

        .action-btn:hover {
            background-color: #f3f4f6;
            color: #1f2937;
        }

        .action-btn.view:hover {
            color: #3b82f6;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1.5rem;
        }

        .pagination-info {
            font-size: 0.875rem;
            color: #6b7280;
        }

        .pagination-actions {
            display: flex;
            gap: 0.5rem;
        }

        .pagination-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2rem;
            height: 2rem;
            border-radius: 0.375rem;
            border: 1px solid #e2e8f0;
            background-color: white;
            color: #4b5563;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .pagination-btn:hover {
            background-color: #f3f4f6;
            border-color: #d1d5db;
        }

        .pagination-btn.active {
            background-color: #db793d;
            color: white;
            border-color: #db793d;
        }

        .pagination-btn i {
            font-size: 0.75rem;
        }

        .pagination-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Empty State */
        .empty-state {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 3rem 1rem;
            text-align: center;
        }

        .empty-state-icon {
            width: 3rem;
            height: 3rem;
            color: #d1d5db;
            margin-bottom: 1rem;
        }

        .empty-state-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .empty-state-description {
            font-size: 0.875rem;
            color: #6b7280;
            max-width: 20rem;
            margin-bottom: 1.5rem;
        }

        /* Summary Cards */
        .summary-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .summary-card {
            background-color: white;
            border-radius: 0.5rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            padding: 1rem;
        }

        .summary-card-title {
            font-size: 0.875rem;
            color: #6b7280;
            margin-bottom: 0.5rem;
        }

        .summary-card-value {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1f2937;
        }

        .summary-card-subtitle {
            font-size: 0.75rem;
            color: #6b7280;
            margin-top: 0.25rem;
        }

        .summary-success {
            color: #059669;
        }

        .summary-pending {
            color: #d97706;
        }

        .summary-rejected {
            color: #dc2626;
        }

        /* Mobile menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #1f2937;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .sidebar {
                transform: translateX(-100%);
                transition: transform 0.3s ease;
            }

            .sidebar.open {
                transform: translateX(0);
            }

            .main-content {
                margin-left: 0;
            }

            .mobile-menu-btn {
                display: block;
                position: fixed;
                top: 1rem;
                right: 1rem;
                z-index: 20;
            }

            .page-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .header-actions {
                width: 100%;
            }

            .search-box {
                width: 100%;
            }

            .search-input {
                width: 100%;
            }

            .filter-bar {
                flex-direction: column;
                gap: 1rem;
            }

            .filter-options {
                width: 100%;
                flex-wrap: wrap;
            }

            .summary-cards {
                grid-template-columns: 1fr;
            }

            .allotment-table-container {
                overflow-x: auto;
            }

            .allotment-table th,
            .allotment-table td {
                white-space: nowrap;
            }

            .pagination {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }
        }
    


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

        /* CSS Reset */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* Base styles */
        body {
            font-family: 'Inter', -apple-system, system-ui, sans-serif;
            background-color: #f8f9fc;
            color: #333;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
        }

        /* Layout */
        .app-container {
            display: flex;
            min-height: 100vh;
        }

        /* Sidebar */
        .sidebar {
            width: 175px;
            background-color: white;
            border-right: 1px solid #e2e8f0;
            height: 100vh;
            position: fixed;
            display: flex;
            flex-direction: column;
            z-index: 10;
        }

        .sidebar-header {
            padding: 1rem;
            border-bottom: 1px solid #e2e8f0;
        }

        .logo {
            font-size: 1.25rem;
            font-weight: 700;
            color: #090667;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: #db793d;
        }

        .sidebar-nav {
            margin-top: 1rem;
            flex: 1;
        }

        .nav-list {
            list-style: none;
        }

        .nav-item {
            margin-bottom: 0.25rem;
        }

        .nav-link {
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            text-decoration: none;
            color: #4b5563;
            font-weight: 500;
            font-size: 0.875rem;
            transition: all 0.2s;
        }

        .nav-link:hover {
            background-color: #f3f4f6;
        }

        .nav-link.active {
            background-color: #090667;
            color: white;
        }

        .nav-link.active svg {
            color: white;
        }

        .nav-link svg {
            width: 1.25rem;
            height: 1.25rem;
            margin-right: 0.75rem;
            color: #090667;
        }

        .sidebar-footer {
            padding: 1rem;
            margin-top: auto;
            border-top: 1px solid #e2e8f0;
        }

        .user-info {
            display: flex;
            align-items: center;
        }

        .user-avatar {
            width: 2rem;
            height: 2rem;
            border-radius: 9999px;
            background-color: #db793d;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            font-size: 0.875rem;
        }

        .user-details {
            margin-left: 0.75rem;
        }

        .user-name {
            font-size: 0.875rem;
            font-weight: 500;
            color: #1f2937;
        }

        .logout-link {
            display: flex;
            align-items: center;
            margin-top: 1rem;
            color: #ef4444;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .logout-link svg {
            width: 1rem;
            height: 1rem;
            margin-right: 0.5rem;
        }

        /* Main Content */
        .main-content {
            flex: 1;
            margin-left: 175px;
            padding: 1.5rem;
        }

        /* Page Header */
        .page-header {
            margin-bottom: 1rem;
        }

        .page-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.25rem;
        }

        .page-subtitle {
            font-size: 0.875rem;
            color: #6b7280;
        }

        /* Form Card */
        .form-card {
            background-color: white;
            border-radius: 0.5rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            padding: 1.5rem;
            margin-top: 1rem;
        }

        /* Form Grid */
        .form-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        /* Form Group */
        .form-group {
            margin-bottom: 1.25rem;
        }

        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 0.625rem 0.75rem;
            font-size: 0.875rem;
            border: 1px solid #d1d5db;
            border-radius: 0.375rem;
            background-color: white;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

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

        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 0.5rem center;
            background-repeat: no-repeat;
            background-size: 1.5em 1.5em;
            padding-right: 2.5rem;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #db793d;
            box-shadow: 0 0 0 2px rgba(219, 121, 61, 0.1);
        }

        .form-helper {
            font-size: 0.75rem;
            color: #6b7280;
            margin-top: 0.25rem;
        }

        /* Form Checkbox */
        .form-checkbox {
            display: flex;
            align-items: flex-start;
            margin-top: 0.5rem;
        }

        .form-checkbox input {
            margin-right: 0.5rem;
            margin-top: 0.25rem;
        }

        .form-checkbox label {
            font-size: 0.875rem;
            color: #4b5563;
        }

        /* Form Buttons */
        .form-buttons {
            display: flex;
            justify-content: flex-end;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .btn {
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            font-weight: 500;
            border: none;
            border-radius: 0.375rem;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .btn-secondary {
            background-color: #f3f4f6;
            color: #4b5563;
        }

        .btn-secondary:hover {
            background-color: #e5e7eb;
        }

        .btn-primary {
            background-color: #db793d;
            color: white;
        }

        .btn-primary:hover {
            background-color: #c56a35;
        }

        /* Form Column Span */
        .form-col-span-2 {
            grid-column: span 2;
        }

        /* Mobile menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #1f2937;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .sidebar {
                transform: translateX(-100%);
                transition: transform 0.3s ease;
            }

            .sidebar.open {
                transform: translateX(0);
            }

            .main-content {
                margin-left: 0;
            }

            .mobile-menu-btn {
                display: block;
                position: fixed;
                top: 1rem;
                right: 1rem;
                z-index: 20;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .form-col-span-2 {
                grid-column: span 1;
            }
        }
    


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

        /* CSS Reset */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* Base styles */
        body {
            font-family: 'Inter', -apple-system, system-ui, sans-serif;
            background-color: #f8f9fc;
            color: #333;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
        }

        /* Layout */
        .app-container {
            display: flex;
            min-height: 100vh;
        }

        /* Sidebar */
        .sidebar {
            width: 175px;
            background-color: white;
            border-right: 1px solid #e2e8f0;
            height: 100vh;
            position: fixed;
            display: flex;
            flex-direction: column;
            z-index: 10;
        }

        .sidebar-header {
            padding: 1rem;
            border-bottom: 1px solid #e2e8f0;
        }

        .logo {
            font-size: 1.25rem;
            font-weight: 700;
            color: #090667;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: #db793d;
        }

        .sidebar-nav {
            margin-top: 1rem;
            flex: 1;
        }

        .nav-list {
            list-style: none;
        }

        .nav-item {
            margin-bottom: 0.25rem;
        }

        .nav-link {
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            text-decoration: none;
            color: #4b5563;
            font-weight: 500;
            font-size: 0.875rem;
            transition: all 0.2s;
        }

        .nav-link:hover {
            background-color: #f3f4f6;
        }

        .nav-link.active {
            background-color: #090667;
            color: white;
        }

        .nav-link.active svg {
            color: white;
        }

        .nav-link svg {
            width: 1.25rem;
            height: 1.25rem;
            margin-right: 0.75rem;
            color: #090667;
        }

        .sidebar-footer {
            padding: 1rem;
            margin-top: auto;
            border-top: 1px solid #e2e8f0;
        }

        .user-info {
            display: flex;
            align-items: center;
        }

        .user-avatar {
            width: 2rem;
            height: 2rem;
            border-radius: 9999px;
            background-color: #db793d;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            font-size: 0.875rem;
        }

        .user-details {
            margin-left: 0.75rem;
        }

        .user-name {
            font-size: 0.875rem;
            font-weight: 500;
            color: #1f2937;
        }

        .logout-link {
            display: flex;
            align-items: center;
            margin-top: 1rem;
            color: #ef4444;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .logout-link svg {
            width: 1rem;
            height: 1rem;
            margin-right: 0.5rem;
        }

        /* Main Content */
        .main-content {
            flex: 1;
            margin-left: 175px;
            padding: 1.5rem;
        }

        /* Page Header */
        .page-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .page-title-section h1 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.25rem;
        }

        .page-subtitle {
            font-size: 0.875rem;
            color: #6b7280;
        }

        /* IPO Details Card */
        .ipo-details-card {
            background-color: white;
            border-radius: 0.5rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .ipo-details-title {
            font-size: 1rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 1rem;
        }

        .ipo-info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }

        .ipo-info-card {
            border-radius: 0.375rem;
            padding: 1rem;
        }

        .ipo-info-card.blue {
            background-color: #f0f5ff;
        }

        .ipo-info-card.yellow {
            background-color: #fffbeb;
        }

        .ipo-info-card.green {
            background-color: #ecfdf5;
        }

        .ipo-info-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }

        .ipo-info-label {
            font-size: 0.875rem;
            color: #6b7280;
        }

        .ipo-info-value {
            font-size: 0.875rem;
            font-weight: 500;
            color: #1f2937;
        }

        /* Clients Section */
        .clients-section {
            background-color: white;
            border-radius: 0.5rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .clients-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
        }

        .clients-title {
            font-size: 1rem;
            font-weight: 600;
            color: #1f2937;
        }

        .clients-available {
            font-size: 0.875rem;
            color: #6b7280;
        }

        /* Clients Table */
        .clients-table {
            width: 100%;
            border-collapse: collapse;
        }

        .clients-table th,
        .clients-table td {
            padding: 0.75rem;
            text-align: left;
            border-bottom: 1px solid #e5e7eb;
        }

        .clients-table th {
            font-size: 0.75rem;
            font-weight: 500;
            color: #6b7280;
            text-transform: uppercase;
        }

        .clients-table td {
            font-size: 0.875rem;
            color: #4b5563;
        }

        .clients-table tr:last-child td {
            border-bottom: none;
        }

        .client-checkbox {
            width: 1.25rem;
            height: 1.25rem;
            border-radius: 50%;
            border: 2px solid #e5e7eb;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: relative;
        }

        .client-checkbox.checked {
            border-color: #db793d;
            background-color: #db793d;
        }

        .client-checkbox.checked::after {
            content: '';
            width: 0.5rem;
            height: 0.5rem;
            border-radius: 50%;
            background-color: white;
            position: absolute;
        }

        .dropdown-select {
            padding: 0.375rem 1.75rem 0.375rem 0.5rem;
            border: 1px solid #e5e7eb;
            border-radius: 0.25rem;
            font-size: 0.875rem;
            color: #4b5563;
            background-color: white;
            appearance: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 0.25rem center;
            background-repeat: no-repeat;
            background-size: 1em 1em;
            cursor: pointer;
        }

        .cutoff-indicator {
            display: flex;
            align-items: center;
            gap: 0.375rem;
            font-size: 0.875rem;
            color: #4b5563;
        }

        .cutoff-dot {
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 50%;
            background-color: #db793d;
        }

        .price-value {
            font-size: 0.875rem;
            font-weight: 500;
            color: #1f2937;
        }

        /* Action Buttons */
        .action-buttons {
            display: flex;
            justify-content: space-between;
            margin-top: 1.5rem;
        }

        .btn {
            padding: 0.625rem 1.25rem;
            font-size: 0.875rem;
            font-weight: 500;
            border: none;
            border-radius: 0.375rem;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .btn-secondary {
            background-color: #f3f4f6;
            color: #4b5563;
        }

        .btn-secondary:hover {
            background-color: #e5e7eb;
        }

        .btn-primary {
            background-color: #db793d;
            color: white;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-primary:hover {
            background-color: #c56a35;
        }

        /* Mobile menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #1f2937;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .sidebar {
                transform: translateX(-100%);
                transition: transform 0.3s ease;
            }

            .sidebar.open {
                transform: translateX(0);
            }

            .main-content {
                margin-left: 0;
            }

            .mobile-menu-btn {
                display: block;
                position: fixed;
                top: 1rem;
                right: 1rem;
                z-index: 20;
            }

            .page-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .ipo-info-grid {
                grid-template-columns: 1fr;
            }

            .clients-table {
                display: block;
                overflow-x: auto;
            }
        }
    


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

        /* CSS Reset */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* Base styles */
        body {
            font-family: 'Inter', -apple-system, system-ui, sans-serif;
            background-color: #f8f9fc;
            color: #333;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
        }

        /* Layout */
        .app-container {
            display: flex;
            min-height: 100vh;
        }

        /* Sidebar */
        .sidebar {
            width: 175px;
            background-color: white;
            border-right: 1px solid #e2e8f0;
            height: 100vh;
            position: fixed;
            display: flex;
            flex-direction: column;
            z-index: 10;
        }

        .sidebar-header {
            padding: 1rem;
            border-bottom: 1px solid #e2e8f0;
        }

        .logo {
            font-size: 1.25rem;
            font-weight: 700;
            color: #090667;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: #db793d;
        }

        .sidebar-nav {
            margin-top: 1rem;
            flex: 1;
        }

        .nav-list {
            list-style: none;
        }

        .nav-item {
            margin-bottom: 0.25rem;
        }

        .nav-link {
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            text-decoration: none;
            color: #4b5563;
            font-weight: 500;
            font-size: 0.875rem;
            transition: all 0.2s;
        }

        .nav-link:hover {
            background-color: #f3f4f6;
        }

        .nav-link.active {
            background-color: #090667;
            color: white;
        }

        .nav-link.active svg {
            color: white;
        }

        .nav-link svg {
            width: 1.25rem;
            height: 1.25rem;
            margin-right: 0.75rem;
            color: #090667;
        }

        .sidebar-footer {
            padding: 1rem;
            margin-top: auto;
            border-top: 1px solid #e2e8f0;
        }

        .user-info {
            display: flex;
            align-items: center;
        }

        .user-avatar {
            width: 2rem;
            height: 2rem;
            border-radius: 9999px;
            background-color: #db793d;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            font-size: 0.875rem;
        }

        .user-details {
            margin-left: 0.75rem;
        }

        .user-name {
            font-size: 0.875rem;
            font-weight: 500;
            color: #1f2937;
        }

        .logout-link {
            display: flex;
            align-items: center;
            margin-top: 1rem;
            color: #ef4444;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .logout-link svg {
            width: 1rem;
            height: 1rem;
            margin-right: 0.5rem;
        }

        /* Main Content */
        .main-content {
            flex: 1;
            margin-left: 175px;
            padding: 1.5rem;
        }

        /* Page Header */
        .page-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .page-title-section h1 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.25rem;
        }

        .page-subtitle {
            font-size: 0.875rem;
            color: #6b7280;
        }

        /* Search and Add Client */
        .header-actions {
            display: flex;
            gap: 0.75rem;
        }

        .search-box {
            position: relative;
        }

        .search-input {
            padding: 0.5rem 0.75rem 0.5rem 2.25rem;
            border: 1px solid #d1d5db;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            min-width: 240px;
            color: #1f2937;
        }

        .search-input:focus {
            outline: none;
            border-color: #db793d;
            box-shadow: 0 0 0 2px rgba(219, 121, 61, 0.1);
        }

        .search-icon {
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            font-size: 0.875rem;
        }

        .add-client-btn {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            background-color: #db793d;
            color: white;
            border: none;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .add-client-btn:hover {
            background-color: #c56a35;
        }

        .add-client-btn i {
            margin-right: 0.5rem;
        }

        /* Tabs */
        .tabs {
            display: flex;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #e5e7eb;
        }

        .tab {
            padding: 0.75rem 1.25rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: #6b7280;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            transition: all 0.2s;
        }

        .tab.active {
            color: #db793d;
            background-color: #db793d20;
            border-radius: 0.375rem;
            border-bottom-color: #db793d;
        }

        .tab:hover:not(.active) {
            color: #4b5563;
            background-color: #f3f4f6;
            border-radius: 0.375rem;
        }

        /* View Toggles */
        .view-toggles {
            display: flex;
            gap: 0.5rem;
            margin-left: auto;
        }

        .view-toggle {
            padding: 0.375rem;
            background: none;
            border: none;
            border-radius: 0.25rem;
            color: #9ca3af;
            cursor: pointer;
            transition: all 0.2s;
        }

        .view-toggle.active {
            color: #db793d;
            background-color: #f3f4f6;
        }

        .view-toggle:hover:not(.active) {
            color: #6b7280;
            background-color: #f3f4f6;
        }

        /* Client Cards Container */
        .clients-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
            gap: 1.25rem;
            margin-top: 1.25rem;
        }

        /* Client Card */
        .client-card {
            background-color: white;
            border-radius: 0.5rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
            overflow: hidden;
        }

        .client-card-header {
            display: flex;
            align-items: center;
            padding: 1rem;
            border-bottom: 1px solid #f3f4f6;
        }

        .client-avatar {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 9999px;
            background-color: #e5e7eb;
            color: #4b5563;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            font-size: 0.875rem;
        }

        .client-info {
            margin-left: 0.75rem;
            flex: 1;
        }

        .client-name {
            font-size: 1rem;
            font-weight: 600;
            color: #1f2937;
        }

        .client-meta {
            font-size: 0.75rem;
            color: #6b7280;
        }

        .client-actions {
            display: flex;
            gap: 0.5rem;
        }

        .action-btn {
            padding: 0.375rem;
            background: none;
            border: none;
            border-radius: 0.25rem;
            color: #6b7280;
            cursor: pointer;
            transition: all 0.2s;
        }

        .action-btn:hover {
            color: #1f2937;
            background-color: #f3f4f6;
        }

        .action-btn.edit:hover {
            color: #3b82f6;
        }

        .action-btn.delete:hover {
            color: #ef4444;
        }

        .client-card-body {
            padding: 1rem;
        }

        .client-details {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.75rem 1.5rem;
        }

        .detail-group {
            display: flex;
            flex-direction: column;
        }

        .detail-label {
            font-size: 0.75rem;
            color: #6b7280;
            margin-bottom: 0.25rem;
        }

        .detail-value {
            font-size: 0.875rem;
            color: #1f2937;
            font-weight: 500;
        }

        .client-contact {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #f3f4f6;
        }

        .contact-item {
            display: flex;
            align-items: center;
            font-size: 0.875rem;
            color: #4b5563;
        }

        .contact-item i {
            width: 1.5rem;
            color: #6b7280;
        }

        .client-card-footer {
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            background-color: #f9fafb;
            border-top: 1px solid #f3f4f6;
        }

        .bids-info {
            font-size: 0.875rem;
            color: #4b5563;
            font-weight: 500;
        }

        .bids-count {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.125rem 0.5rem;
            background-color: #f3f4f6;
            border-radius: 9999px;
            margin-left: 0.5rem;
            font-size: 0.75rem;
            color: #6b7280;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 1.5rem;
            gap: 0.25rem;
        }

        .pagination-btn {
            width: 2rem;
            height: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border: none;
            border-radius: 0.375rem;
            background: none;
            color: #6b7280;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .pagination-btn:hover:not(.active) {
            background-color: #f3f4f6;
            color: #4b5563;
        }

        .pagination-btn.active {
            background-color: #db793d;
            color: white;
        }

        .pagination-btn.disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Mobile menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #1f2937;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .sidebar {
                transform: translateX(-100%);
                transition: transform 0.3s ease;
            }

            .sidebar.open {
                transform: translateX(0);
            }

            .main-content {
                margin-left: 0;
            }

            .mobile-menu-btn {
                display: block;
                position: fixed;
                top: 1rem;
                right: 1rem;
                z-index: 20;
            }

            .page-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .header-actions {
                width: 100%;
                flex-direction: column;
            }

            .search-box {
                width: 100%;
            }

            .search-input {
                width: 100%;
            }

            .add-client-btn {
                width: 100%;
                justify-content: center;
            }

            .clients-container {
                grid-template-columns: 1fr;
            }

            .client-details {
                grid-template-columns: 1fr;
            }
        }
    


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

        /* CSS Reset */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* Base styles */
        body {
            font-family: 'Inter', -apple-system, system-ui, sans-serif;
            background-color: #f8f9fc;
            color: #333;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Layout */
        .app-container {
            display: flex;
            min-height: 100vh;
        }

        /* Sidebar */
        .sidebar {
            width: 175px;
            background-color: white;
            border-right: 1px solid #e2e8f0;
            height: 100vh;
            position: fixed;
            display: flex;
            flex-direction: column;
        }

        .sidebar-header {
            padding: 1rem;
        }

        .logo {
            font-size: 1.25rem;
            font-weight: 700;
            color: #090667;
        }

        .logo span {
            color: #db793d;
        }

        .sidebar-nav {
            margin-top: 1.5rem;
            flex: 1;
        }

        .nav-list {
            list-style: none;
            padding: 0 0.75rem;
        }

        .nav-item {
            margin-bottom: 0.375rem;
        }

        .nav-link {
            display: flex;
            align-items: center;
            padding: 0.625rem 0.75rem;
            border-radius: 0.375rem;
            text-decoration: none;
            color: #4b5563;
            font-weight: 500;
            font-size: 0.875rem;
            transition: all 0.2s;
        }

        .nav-link:hover {
            background-color: #f3f4f6;
        }

        .nav-link.active {
            background-color: #090667;
            color: white;
        }

        .nav-link.active svg {
            color: white;
        }

        .nav-link svg {
            width: 1.25rem;
            height: 1.25rem;
            margin-right: 0.75rem;
            color: #090667;
        }

        .sidebar-footer {
            padding: 1rem;
            margin-top: auto;
        }

        .user-info {
            display: flex;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid #e2e8f0;
        }

        .user-avatar {
            width: 2rem;
            height: 2rem;
            border-radius: 9999px;
            background-color: #db793d;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            font-size: 0.875rem;
        }

        .user-details {
            margin-left: 0.5rem;
        }

        .user-name {
            font-size: 0.75rem;
            font-weight: 500;
            color: #1f2937;
        }

        .user-email {
            font-size: 0.75rem;
            color: #6b7280;
        }

        .logout-btn {
            display: flex;
            align-items: center;
            padding: 0.5rem 0.75rem;
            margin-top: 1rem;
            border-radius: 0.375rem;
            border: none;
            background: none;
            color: #ef4444;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s;
            text-align: left;
            width: 100%;
        }

        .logout-btn:hover {
            background-color: #fee2e2;
        }

        .logout-btn svg {
            width: 1rem;
            height: 1rem;
            margin-right: 0.5rem;
        }

        /* Main Content */
        .main-content {
            flex: 1;
            margin-left: 175px;
            padding: 1.5rem;
        }

        /* Page Header */
        .page-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .page-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1f2937;
        }

        /* Filter Bar */
        .filter-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            background-color: white;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
        }

        .search-box {
            position: relative;
            width: 16rem;
        }

        .search-input {
            width: 100%;
            padding: 0.5rem 1rem 0.5rem 2.5rem;
            border: 1px solid #e2e8f0;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .search-input:focus {
            border-color: #db793d;
            box-shadow: 0 0 0 2px rgb(219 121 61 / 10%);
        }

        .search-icon {
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            width: 1rem;
            height: 1rem;
        }

        .filter-options {
            display: flex;
            gap: 0.75rem;
        }

        .filter-select {
            padding: 0.5rem 2rem 0.5rem 0.75rem;
            border: 1px solid #e2e8f0;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            color: #4b5563;
            background-color: white;
            appearance: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
            background-position: right 0.5rem center;
            background-repeat: no-repeat;
            background-size: 1.5em 1.5em;
            cursor: pointer;
            outline: none;
        }

        .filter-select:focus {
            border-color: #db793d;
            box-shadow: 0 0 0 2px rgb(219 121 61 / 10%);
        }

        /* Bids Table */
        .bids-table-container {
            background-color: white;
            border-radius: 0.5rem;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .bids-table {
            width: 100%;
            border-collapse: collapse;
        }

        .bids-table th,
        .bids-table td {
            padding: 0.75rem 1rem;
            text-align: left;
            border-bottom: 1px solid #e2e8f0;
        }

        .bids-table th {
            background-color: #f8f9fc;
            font-weight: 600;
            color: #6b7280;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .bids-table tr:last-child td {
            border-bottom: none;
        }

        .bids-table tr:hover td {
            background-color: #f9fafb;
        }

        .client-info {
            display: flex;
            align-items: center;
        }

        .client-avatar {
            width: 2rem;
            height: 2rem;
            border-radius: 9999px;
            background-color: #db793d;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            font-size: 0.75rem;
            margin-right: 0.75rem;
        }

        .client-name {
            font-weight: 500;
            color: #1f2937;
            font-size: 0.875rem;
        }

        .client-pan {
            color: #6b7280;
            font-size: 0.75rem;
        }

        .bid-ipo {
            font-weight: 500;
            color: #1f2937;
            font-size: 0.875rem;
        }

        .bid-ipo-info {
            color: #6b7280;
            font-size: 0.75rem;
        }

        .bid-price {
            font-weight: 600;
            color: #1f2937;
            font-size: 0.875rem;
        }

        .bid-quantity {
            color: #6b7280;
            font-size: 0.75rem;
        }

        .bid-date {
            font-size: 0.875rem;
            color: #4b5563;
        }

        .bid-status {
            display: inline-flex;
            align-items: center;
            padding: 0.25rem 0.625rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .status-pending {
            background-color: #fef3c7;
            color: #b45309;
        }

        .status-successful {
            background-color: #d1fae5;
            color: #065f46;
        }

        .status-rejected {
            background-color: #fee2e2;
            color: #b91c1c;
        }

        .bid-actions {
            display: flex;
            gap: 0.5rem;
        }

        .action-btn {
            padding: 0.375rem;
            border: none;
            background-color: transparent;
            border-radius: 0.375rem;
            color: #6b7280;
            cursor: pointer;
            transition: all 0.2s;
        }

        .action-btn:hover {
            background-color: #f3f4f6;
            color: #1f2937;
        }

        .action-btn svg {
            width: 1rem;
            height: 1rem;
        }

        .view-btn:hover {
            color: #3b82f6;
        }

        .delete-btn:hover {
            color: #ef4444;
        }

        /* Pagination */
        .pagination {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 1.5rem;
        }

        .pagination-info {
            font-size: 0.875rem;
            color: #6b7280;
        }

        .pagination-actions {
            display: flex;
            gap: 0.5rem;
        }

        .pagination-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2rem;
            height: 2rem;
            border-radius: 0.375rem;
            border: 1px solid #e2e8f0;
            background-color: white;
            color: #4b5563;
            font-size: 0.875rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .pagination-btn:hover {
            background-color: #f3f4f6;
            border-color: #d1d5db;
        }

        .pagination-btn.active {
            background-color: #090667;
            color: white;
            border-color: #090667;
        }

        .pagination-btn svg {
            width: 1rem;
            height: 1rem;
        }

        .pagination-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* Empty State */
        .empty-state {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 3rem 1rem;
            text-align: center;
        }

        .empty-state-icon {
            width: 3rem;
            height: 3rem;
            color: #d1d5db;
            margin-bottom: 1rem;
        }

        .empty-state-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .empty-state-description {
            font-size: 0.875rem;
            color: #6b7280;
            max-width: 20rem;
            margin-bottom: 1.5rem;
        }

        .add-bid-btn {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 0.375rem;
            background-color: #db793d;
            color: white;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .add-bid-btn:hover {
            background-color: #c56a35;
        }

        .add-bid-btn svg {
            width: 1rem;
            height: 1rem;
            margin-right: 0.5rem;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .sidebar {
                display: none;
            }

            .main-content {
                margin-left: 0;
            }

            .filter-bar {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }

            .search-box {
                width: 100%;
            }

            .filter-options {
                width: 100%;
                justify-content: space-between;
            }

            .bids-table-container {
                overflow-x: auto;
            }

            .bids-table th,
            .bids-table td {
                white-space: nowrap;
            }
        }
    


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

        /* CSS Reset */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* Base styles */
        body {
            font-family: 'Inter', -apple-system, system-ui, sans-serif;
            background-color: #f8f9fc;
            color: #333;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
        }

        /* Layout */
        .auth-container {
            display: flex;
            min-height: 100vh;
        }

        /* Form Column */
        .auth-form-column {
            width: 40%;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: white;
        }

        /* Logo */
        .logo {
            display: flex;
            align-items: center;
            margin-bottom: 3rem;
        }

        .logo-icon {
            width: 2.5rem;
            height: 2.5rem;
            background-color: #db793d;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0.5rem;
            font-size: 1.25rem;
            margin-right: 0.75rem;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: #090667;
        }

        .logo-text span {
            color: #db793d;
        }

        /* Form Header */
        .auth-header {
            margin-bottom: 2rem;
        }

        .auth-title {
            font-size: 1.875rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .auth-subtitle {
            font-size: 1rem;
            color: #6b7280;
        }

        /* Form Group */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .form-input {
            width: 100%;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            border: 1px solid #e2e8f0;
            border-radius: 0.5rem;
            background-color: #f8f9fc;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .form-input:focus {
            outline: none;
            border-color: #db793d;
            box-shadow: 0 0 0 2px rgba(219, 121, 61, 0.1);
        }

        /* Form Helpers */
        .form-helpers {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .form-checkbox {
            display: flex;
            align-items: center;
        }

        .form-checkbox input {
            margin-right: 0.5rem;
            width: 1rem;
            height: 1rem;
        }

        .form-checkbox label {
            font-size: 0.875rem;
            color: #6b7280;
        }

        .forgot-password {
            font-size: 0.875rem;
            color: #db793d;
            text-decoration: none;
            font-weight: 500;
        }

        .forgot-password:hover {
            text-decoration: underline;
        }

        /* Button */
        .btn {
            width: 100%;
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .btn-primary {
            background-color: #db793d;
            color: white;
        }

        .btn-primary:hover {
            background-color: #c56a35;
        }

        /* Divider */
        .divider {
            display: flex;
            align-items: center;
            margin: 1.5rem 0;
            color: #9ca3af;
            font-size: 0.875rem;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background-color: #e5e7eb;
        }

        .divider::before {
            margin-right: 0.75rem;
        }

        .divider::after {
            margin-left: 0.75rem;
        }

        /* Form Footer */
        .auth-form-footer {
            margin-top: 2rem;
            text-align: center;
            font-size: 0.875rem;
            color: #6b7280;
        }

        .auth-form-footer a {
            color: #db793d;
            text-decoration: none;
            font-weight: 500;
            margin-left: 0.25rem;
        }

        .auth-form-footer a:hover {
            text-decoration: underline;
        }

        /* Hero Column */
        .auth-hero-column {
            width: 60%;
            background-color: #ffede1;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        /* Hero Content */
        .auth-hero-content {
            max-width: 32rem;
            padding: 2rem;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .auth-hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #090667;
            margin-bottom: 1rem;
        }

        .auth-hero-subtitle {
            font-size: 1.125rem;
            color: #4b5563;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        /* Hero Illustration */
        .auth-hero-illustration {
            max-width: 100%;
            height: auto;
        }

        /* Hero Shapes */
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.4;
        }

        .hero-shape-1 {
            width: 20rem;
            height: 20rem;
            background-color: #db793d;
            top: -8rem;
            right: -8rem;
        }

        .hero-shape-2 {
            width: 15rem;
            height: 15rem;
            background-color: #090667;
            bottom: -5rem;
            left: -5rem;
        }

        /* Validation */
        .validation-error {
            color: #ef4444;
            font-size: 0.75rem;
            margin-top: 0.25rem;
        }

        .form-input.error {
            border-color: #ef4444;
        }

        /* Responsive Adjustments */
        @media (max-width: 1024px) {
            .auth-form-column {
                width: 50%;
            }
            
            .auth-hero-column {
                width: 50%;
            }
        }

        @media (max-width: 768px) {
            .auth-container {
                flex-direction: column-reverse;
            }
            
            .auth-form-column {
                width: 100%;
            }
            
            .auth-hero-column {
                width: 100%;
                min-height: 20rem;
            }
            
            .auth-hero-title {
                font-size: 2rem;
            }
            
            .auth-hero-subtitle {
                font-size: 1rem;
            }

            .social-buttons {
                flex-direction: column;
            }
        }
    


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

        /* CSS Reset */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* Base styles */
        body {
            font-family: 'Inter', -apple-system, system-ui, sans-serif;
            background-color: #f8f9fc;
            color: #333;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            min-height: 100vh;
        }

        /* Layout */
        .auth-container {
            display: flex;
            min-height: 100vh;
        }

        /* Form Column */
        .auth-form-column {
            width: 40%;
            padding: 2.5rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: white;
        }

        /* Logo */
        .logo {
            display: flex;
            align-items: center;
            margin-bottom: 3rem;
        }

        .logo-icon {
            width: 2.5rem;
            height: 2.5rem;
            background-color: #db793d;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 0.5rem;
            font-size: 1.25rem;
            margin-right: 0.75rem;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: #090667;
        }

        .logo-text span {
            color: #db793d;
        }

        /* Form Header */
        .auth-header {
            margin-bottom: 2rem;
        }

        .auth-title {
            font-size: 1.875rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .auth-subtitle {
            font-size: 1rem;
            color: #6b7280;
        }

        /* Form Group */
        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .form-input {
            width: 100%;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            border: 1px solid #e2e8f0;
            border-radius: 0.5rem;
            background-color: #f8f9fc;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .form-input:focus {
            outline: none;
            border-color: #db793d;
            box-shadow: 0 0 0 2px rgba(219, 121, 61, 0.1);
        }

        .form-group-inline {
            display: flex;
            gap: 1rem;
        }

        .form-group-inline .form-group {
            flex: 1;
        }

        /* Checkbox */
        .form-checkbox {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .form-checkbox input {
            margin-right: 0.5rem;
            width: 1rem;
            height: 1rem;
        }

        .form-checkbox label {
            font-size: 0.875rem;
            color: #6b7280;
        }

        .form-checkbox a {
            color: #db793d;
            text-decoration: none;
            font-weight: 500;
            margin-left: 0.25rem;
        }

        .form-checkbox a:hover {
            text-decoration: underline;
        }

        /* Button */
        .btn {
            width: 100%;
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
            font-weight: 600;
            border: none;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .btn-primary {
            background-color: #db793d;
            color: white;
        }

        .btn-primary:hover {
            background-color: #c56a35;
        }

        /* Form Footer */
        .auth-form-footer {
            margin-top: 2rem;
            text-align: center;
            font-size: 0.875rem;
            color: #6b7280;
        }

        .auth-form-footer a {
            color: #db793d;
            text-decoration: none;
            font-weight: 500;
            margin-left: 0.25rem;
        }

        .auth-form-footer a:hover {
            text-decoration: underline;
        }

        /* Hero Column */
        .auth-hero-column {
            width: 60%;
            background-color: #ffede1;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        /* Hero Content */
        .auth-hero-content {
            max-width: 32rem;
            padding: 2rem;
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .auth-hero-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #090667;
            margin-bottom: 1rem;
        }

        .auth-hero-subtitle {
            font-size: 1.125rem;
            color: #4b5563;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        /* Hero Illustration */
        .auth-hero-illustration {
            max-width: 100%;
            height: auto;
        }

        /* Hero Shapes */
        .hero-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.4;
        }

        .hero-shape-1 {
            width: 20rem;
            height: 20rem;
            background-color: #db793d;
            top: -8rem;
            right: -8rem;
        }

        .hero-shape-2 {
            width: 15rem;
            height: 15rem;
            background-color: #090667;
            bottom: -5rem;
            left: -5rem;
        }

        /* Validation */
        .validation-error {
            color: #ef4444;
            font-size: 0.75rem;
            margin-top: 0.25rem;
        }

        .form-input.error {
            border-color: #ef4444;
        }

        /* Responsive Adjustments */
        @media (max-width: 1024px) {
            .auth-form-column {
                width: 50%;
            }
            
            .auth-hero-column {
                width: 50%;
            }
        }

        @media (max-width: 768px) {
            .auth-container {
                flex-direction: column-reverse;
            }
            
            .auth-form-column {
                width: 100%;
            }
            
            .auth-hero-column {
                width: 100%;
                min-height: 20rem;
            }
            
            .auth-hero-title {
                font-size: 2rem;
            }
            
            .auth-hero-subtitle {
                font-size: 1rem;
            }
        }
    


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

        /* CSS Reset */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* Base styles */
        body {
            font-family: 'Inter', -apple-system, system-ui, sans-serif;
            background-color: #f8f9fc;
            color: #333;
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Layout */
        .app-container {
            display: flex;
            min-height: 100vh;
        }

        /* Sidebar */
        .sidebar {
            width: 175px;
            background-color: white;
            border-right: 1px solid #e2e8f0;
            height: 100vh;
            position: fixed;
            display: flex;
            flex-direction: column;
        }

        .sidebar-header {
            padding: 1rem;
        }

        .logo {
            font-size: 1.25rem;
            font-weight: 700;
            color: #090667;
        }

        .logo span {
            color: #db793d;
        }

        .sidebar-nav {
            margin-top: 1.5rem;
            flex: 1;
        }

        .nav-list {
            list-style: none;
            padding: 0 0.75rem;
        }

        .nav-item {
            margin-bottom: 0.375rem;
        }

        .nav-link {
            display: flex;
            align-items: center;
            padding: 0.625rem 0.75rem;
            border-radius: 0.375rem;
            text-decoration: none;
            color: #4b5563;
            font-weight: 500;
            font-size: 0.875rem;
            transition: all 0.2s;
        }

        .nav-link:hover {
            background-color: #f3f4f6;
        }

        .nav-link.active {
            background-color: #090667;
            color: white;
        }

        .nav-link.active svg {
            color: white;
        }

        .nav-link svg {
            width: 1.25rem;
            height: 1.25rem;
            margin-right: 0.75rem;
            color: #090667;
        }

        .sidebar-footer {
            padding: 1rem;
            margin-top: auto;
        }

        .user-info {
            display: flex;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid #e2e8f0;
        }

        .user-avatar {
            width: 2rem;
            height: 2rem;
            border-radius: 9999px;
            background-color: #db793d;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 500;
            font-size: 0.875rem;
        }

        .user-details {
            margin-left: 0.5rem;
        }

        .user-name {
            font-size: 0.75rem;
            font-weight: 500;
            color: #1f2937;
        }

        .user-email {
            font-size: 0.75rem;
            color: #6b7280;
        }

        .logout-btn {
            display: flex;
            align-items: center;
            padding: 0.5rem 0.75rem;
            margin-top: 1rem;
            border-radius: 0.375rem;
            border: none;
            background: none;
            color: #ef4444;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s;
            text-align: left;
            width: 100%;
        }

        .logout-btn:hover {
            background-color: #fee2e2;
        }

        .logout-btn svg {
            width: 1rem;
            height: 1rem;
            margin-right: 0.5rem;
        }

        /* Main Content */
        .main-content {
            flex: 1;
            margin-left: 175px;
            padding: 1.5rem;
        }

        /* Search Box */
        .search-box {
            position: relative;
            margin-bottom: 1.5rem;
            max-width: 30rem;
        }

        .search-input {
            width: 100%;
            padding: 0.625rem 1rem 0.625rem 2.5rem;
            border: 1px solid #e2e8f0;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            outline: none;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .search-input:focus {
            border-color: #db793d;
            box-shadow: 0 0 0 2px rgb(219 121 61 / 10%);
        }

        .search-icon {
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            width: 1.25rem;
            height: 1.25rem;
        }

        /* Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
            gap: 1.25rem;
            margin-bottom: 2rem;
        }

        .stat-card {
            background-color: white;
            border: 1px solid #e2e8f0;
            border-radius: 0.5rem;
            padding: 1.25rem;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .stat-info h3 {
            font-size: 0.875rem;
            font-weight: 500;
            color: #6b7280;
            margin-bottom: 0.25rem;
        }

        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1f2937;
        }

        .stat-icon {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 9999px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stat-icon.green {
            background-color: #d1fae5;
        }

        .stat-icon.green svg {
            color: #10b981;
        }

        .stat-icon.blue {
            background-color: #dbeafe;
        }

        .stat-icon.blue svg {
            color: #3b82f6;
        }

        .stat-icon.purple {
            background-color: #ede9fe;
        }

        .stat-icon.purple svg {
            color: #8b5cf6;
        }

        .stat-icon.yellow {
            background-color: #fef3c7;
        }

        .stat-icon.yellow svg {
            color: #f59e0b;
        }

        /* IPO Section */
        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.25rem;
        }

        .section-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1f2937;
        }

        .view-all-btn {
            padding: 0.375rem 0.75rem;
            background-color: #090667;
            color: white;
            border: none;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .view-all-btn:hover {
            background-color: #070549;
        }

        /* IPO Grid */
        .ipo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }

        .ipo-card {
            border: 1px solid #e2e8f0;
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        .ipo-card-tech {
            background-color: #FFF0F0;
        }

        .ipo-card-manufacturing {
            background-color: #EEF6FF;
        }

        .ipo-card-healthcare {
            background-color: #F0FFF3;
        }

        .ipo-card-logistics {
            background-color: #FFFBEB;
        }

        .ipo-card-header {
            padding: 1rem;
        }

        .ipo-card-tags {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.5rem;
        }

        .tag {
            display: inline-block;
            padding: 0.25rem 0.5rem;
            border-radius: 0.25rem;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .tag.sector-tech {
            background-color: white;
            color: #ef4444;
        }

        .tag.sector-manufacturing {
            background-color: white;
            color: #3b82f6;
        }

        .tag.sector-healthcare {
            background-color: white;
            color: #10b981;
        }

        .tag.sector-logistics {
            background-color: white;
            color: #f59e0b;
        }

        .tag.status {
            background-color: #d1fae5;
            color: #047857;
        }

        .ipo-name {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.25rem;
        }

        .ipo-description {
            font-size: 0.75rem;
            color: #4b5563;
            margin-bottom: 1rem;
        }

        .ipo-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .ipo-detail-label {
            font-size: 0.75rem;
            color: #6b7280;
            margin-bottom: 0.125rem;
        }

        .ipo-detail-value {
            font-size: 0.875rem;
            font-weight: 500;
            color: #1f2937;
        }

        .apply-btn {
            width: 100%;
            padding: 0.5rem;
            background-color: #db793d;
            color: white;
            border: none;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .apply-btn:hover {
            background-color: #c56a35;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .sidebar {
                display: none;
            }

            .main-content {
                margin-left: 0;
            }

            .stats-grid,
            .ipo-grid {
                grid-template-columns: 1fr;
            }
        }