
        /* EduConnect CRM Styles */
        :root {
            --primary: #4361ee;
            --secondary: #3f37c9;
            --success: #4cc9f0;
            --info: #4895ef;
            --warning: #f72585;
            --danger: #e63946;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-gray: #e9ecef;
        }
        
        /* Common Styles */
        .educonnect-dashboard-container,
        .educonnect-customers-container,
        .educonnect-subscriptions-container,
        .educonnect-expenses-container {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark);
            background-color: #f5f7fb;
            padding: 20px;
            border-radius: 10px;
        }
        
        .section-title {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary);
        }
        
        /* Dashboard Cards */
        .dashboard {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 20px;
            transition: transform 0.3s;
        }
        
        .card:hover {
            transform: translateY(-5px);
        }
        
        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .card-title {
            font-size: 1rem;
            color: var(--gray);
            font-weight: 600;
        }
        
        .card-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        
        .bg-primary-light {
            background: rgba(67, 97, 238, 0.15);
            color: var(--primary);
        }
        
        .bg-success-light {
            background: rgba(76, 201, 240, 0.15);
            color: var(--success);
        }
        
        .bg-warning-light {
            background: rgba(247, 37, 133, 0.15);
            color: var(--warning);
        }
        
        .bg-info-light {
            background: rgba(72, 149, 239, 0.15);
            color: var(--info);
        }
        
        .card-value {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .card-change {
            font-size: 0.9rem;
            color: var(--success);
        }
        
        .card-change.negative {
            color: var(--danger);
        }
        
        .chart-container {
            height: 250px;
            margin-top: 15px;
        }
        
        /* Tabs */
        .tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            background: white;
            padding: 10px;
            border-radius: 12px;
        }
        
        .tab {
            padding: 10px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .tab.active {
            background: var(--primary);
            color: white;
        }
        
        /* Forms */
        .form-section {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--light-gray);
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
        }
        
        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 0.75rem center;
            background-size: 16px 12px;
        }
        
        .btn {
            padding: 12px 25px;
            border-radius: 8px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-primary {
            background: var(--primary);
            color: white;
        }
        
        .btn-primary:hover {
            background: var(--secondary);
        }
        
        .btn-outline {
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
        }
        
        .btn-outline:hover {
            background: rgba(67, 97, 238, 0.1);
        }
        
        .action-buttons {
            display: flex;
            gap: 10px;
            justify-content: flex-end;
            margin-top: 20px;
        }
        
        /* Table */
        .table-container {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            overflow-x: auto;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
        }
        
        thead {
            background: var(--primary);
            color: white;
        }
        
        th {
            padding: 15px 20px;
            text-align: left;
            font-weight: 600;
        }
        
        tbody tr {
            border-bottom: 1px solid var(--light-gray);
        }
        
        tbody tr:last-child {
            border-bottom: none;
        }
        
        td {
            padding: 12px 20px;
        }
        
        .status-badge {
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .status-new, .status-lead {
            background: rgba(108, 117, 125, 0.15);
            color: var(--gray);
        }
        
        .status-contact, .status-qualified {
            background: rgba(76, 201, 240, 0.15);
            color: var(--success);
        }
        
        .status-proposal, .status-ordered {
            background: rgba(72, 149, 239, 0.15);
            color: var(--info);
        }
        
        .status-closed, .status-paid, .status-active {
            background: rgba(67, 97, 238, 0.15);
            color: var(--primary);
        }
        
        .status-canceled, .status-refunded {
            background: rgba(247, 37, 133, 0.15);
            color: var(--warning);
        }
        
        .action-cell {
            display: flex;
            gap: 10px;
        }
        
        .action-btn {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .edit-btn {
            background: rgba(76, 201, 240, 0.15);
            color: var(--success);
        }
        
        .edit-btn:hover {
            background: var(--success);
            color: white;
        }
        
        .delete-btn {
            background: rgba(230, 57, 70, 0.15);
            color: var(--danger);
        }
        
        .delete-btn:hover {
            background: var(--danger);
            color: white;
        }
        
        /* Kanban Board */
        .kanban-board {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        
        .kanban-column {
            background: white;
            border-radius: 15px;
            min-width: 300px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .column-header {
            padding-bottom: 15px;
            margin-bottom: 15px;
            border-bottom: 1px solid var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .column-title {
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .card-count {
            background: var(--light-gray);
            color: var(--gray);
            border-radius: 20px;
            padding: 2px 10px;
            font-size: 0.9rem;
        }
        
        .kanban-cards {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .kanban-card {
            background: white;
            border-radius: 12px;
            padding: 15px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            cursor: move;
            transition: all 0.3s;
            border-left: 4px solid var(--primary);
        }
        
        .kanban-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .customer-name {
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .card-details {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .detail-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
        }
        
        .detail-item i {
            color: var(--gray);
            width: 20px;
        }
        
        .card-actions {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            margin-top: 15px;
            padding-top: 10px;
            border-top: 1px solid var(--light-gray);
        }
        
        /* Notice Styling */
        .notice {
            background: #fff;
            border-left: 4px solid #00a0d2;
            box-shadow: 0 1px 1px rgba(0,0,0,.04);
            margin: 15px 0;
            padding: 12px;
        }
        
        .notice-success {
            border-left-color: #46b450;
        }
        
        .notice-error {
            border-left-color: #dc3232;
        }
        
        .notice-warning {
            border-left-color: #ffb900;
        }
        h1{
    font-family: var(--heading-font);
    font-size: medium;}
    
    
    
        /* Responsive Design */
        @media (max-width: 992px) {
            .dashboard {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .dashboard {
                grid-template-columns: 1fr;
            }
            .form-grid {
                grid-template-columns: 1fr;
            }
            .kanban-column {
                min-width: 280px;
            }
        }
        