

        .service-container {
            display: flex;
            min-height: 100vh;
        }

      
        /* Main Content */
        .service-main {
            flex: 1;
            margin-left: 250px;
            transition: margin-left 0.3s ease;
        }

       
        /* Content Area */
        .service-content {
            padding: 30px;
            min-height: calc(100vh - 70px - 60px);
        }

        .content-head {
            margin-bottom: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .content-head-left h1 {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 8px;
            background: linear-gradient(90deg, #4da6ff, #0066cc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }

        .content-head-left p {
            color: #bbbbbb;
            font-size: 1.1rem;
            font-weight: 300;
        }

        /* Add Service Button */
        .add-service-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            background: linear-gradient(135deg, #4da6ff, #0066cc);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(77, 166, 255, 0.3);
            min-height: 44px;
        }

        .add-service-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(77, 166, 255, 0.5);
        }

        .add-service-btn i {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .add-service-btn:hover i {
            transform: rotate(90deg);
        }

        /* Services Table */
        .services-table-container {
            background: rgba(15, 15, 15, 0.7);
            border: 1px solid rgba(77, 166, 255, 0.2);
            border-radius: 15px;
            padding: 20px;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            overflow: hidden;
        }

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

        .services-table th {
            text-align: left;
            padding: 16px 20px;
            border-bottom: 1px solid rgba(77, 166, 255, 0.2);
            color: #4da6ff;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .services-table td {
            padding: 16px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            color: #bbbbbb;
        }

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

        .services-table tr:hover {
            background: rgba(77, 166, 255, 0.05);
        }

        /* Service Icon */
        .service-icon {
            width: 60px;
            height: 60px;
            border-radius: 10px;
            overflow: hidden;
            background: rgba(20, 20, 20, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .service-icon i {
            font-size: 1.8rem;
            color: #4da6ff;
        }

        /* Service Info */
        .service-title {
            font-weight: 600;
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .service-category {
            font-size: 0.9rem;
            color: #bbbbbb;
        }

        /* Status Indicators */
        .status-indicator {
            display: inline-block;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .status-active {
            background: rgba(46, 204, 113, 0.15);
            color: #2ecc71;
        }

        .status-draft {
            background: rgba(243, 156, 18, 0.15);
            color: #f39c12;
        }

        .status-inactive {
            background: rgba(149, 165, 166, 0.15);
            color: #95a5a6;
        }

        /* Action Buttons */
        .action-set {
            display: flex;
            gap: 10px;
        }

        .action-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(77, 166, 255, 0.1);
            color: #4da6ff;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 36px;
            min-height: 36px;
        }

        .action-icon:hover {
            background: rgba(77, 166, 255, 0.2);
            transform: translateY(-3px);
        }

        .action-icon.delete {
            background: rgba(231, 76, 60, 0.1);
            color: #e74c3c;
        }

        .action-icon.delete:hover {
            background: rgba(231, 76, 60, 0.2);
        }

        /* Service Form Modal */
        .service-form-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .service-form-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .form-panel {
            background: rgba(15, 15, 15, 0.95);
            border: 1px solid rgba(77, 166, 255, 0.3);
            border-radius: 15px;
            width: 100%;
            max-width: 700px;
            box-shadow: 0 0 40px rgba(77, 166, 255, 0.2);
            backdrop-filter: blur(10px);
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .service-form-modal.active .form-panel {
            transform: translateY(0);
        }

        .form-head {
            padding: 20px 25px;
            border-bottom: 1px solid rgba(77, 166, 255, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .form-head h2 {
            font-size: 1.8rem;
            font-weight: 600;
            background: linear-gradient(90deg, #4da6ff, #0066cc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .close-form {
            background: transparent;
            border: none;
            color: #bbbbbb;
            font-size: 1.5rem;
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            min-width: 44px;
            min-height: 44px;
        }

        .close-form:hover {
            color: #e74c3c;
            background: rgba(231, 76, 60, 0.1);
        }

        .form-body {
            padding: 25px;
        }

        .form-item {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            color: #bbbbbb;
            font-weight: 500;
            font-size: 0.95rem;
        }

        .form-field,
        .form-text,
        .form-select {
            width: 100%;
            padding: 12px 16px;
            background: rgba(25, 25, 25, 0.7);
            border: 1px solid rgba(77, 166, 255, 0.2);
            border-radius: 8px;
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            min-height: 44px;
        }

        .form-field:focus,
        .form-text:focus,
        .form-select:focus {
            outline: none;
            border-color: #4da6ff;
            box-shadow: 0 0 0 3px rgba(77, 166, 255, 0.2);
        }

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

        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-col {
            flex: 1;
        }

        .form-cta {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
            padding-top: 10px;
        }

        .form-btn {
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            min-height: 44px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #4da6ff, #0066cc);
            color: white;
            box-shadow: 0 5px 15px rgba(77, 166, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(77, 166, 255, 0.5);
        }

        .btn-secondary {
            background: rgba(50, 50, 50, 0.5);
            color: #bbbbbb;
            border: 1px solid rgba(77, 166, 255, 0.2);
        }

        .btn-secondary:hover {
            background: rgba(70, 70, 70, 0.5);
            color: #fff;
        }

        /* Footer */
        .service-footer {
            background: #111111;
            border-top: 1px solid rgba(77, 166, 255, 0.2);
            padding: 20px 30px;
            text-align: center;
            color: #bbbbbb;
            font-size: 0.9rem;
        }

        /* Mobile Card Layout for Services */
        .services-table-card {
            display: none;
        }

        .service-card {
            background: rgba(15, 15, 15, 0.7);
            border: 1px solid rgba(77, 166, 255, 0.2);
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .service-card-header {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
        }

        .service-card-content {
            margin-bottom: 10px;
        }

        .service-card-content div {
            margin-bottom: 5px;
            font-size: 0.9rem;
            color: #bbbbbb;
        }

        .service-card-content .service-title {
            font-size: 1rem;
            color: #fff;
        }

        /* Responsive */
        @media (max-width: 992px) {
     

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

      
            .menu-trigger {
                display: block;
            }

            .form-row {
                flex-direction: column;
                gap: 0;
            }
        }

        @media (max-width: 768px) {
         

            .topbar-heading {
                font-size: 1.2rem;
            }

            .admin-username {
                display: none;
            }

       

            .service-content {
                padding: 20px;
            }

            .content-head-left h1 {
                font-size: 1.8rem;
            }

            .content-head-left p {
                font-size: 1rem;
            }

            .services-table {
                display: none;
            }

            .services-table-container {
                padding: 15px;
            }

            .services-table-card {
                display: block;
            }

            .form-panel {
                width: 90%;
                max-width: 500px;
                margin: 0 auto;
            }
        }

        @media (max-width: 576px) {
            .service-content {
                padding: 15px;
            }

            .content-head {
                gap: 10px;
            }

            .content-head-left h1 {
                font-size: 1.5rem;
            }

            .content-head-left p {
                font-size: 0.9rem;
            }

            .add-service-btn {
                padding: 10px 15px;
                font-size: 0.9rem;
                min-height: 40px;
            }

            .add-service-btn i {
                font-size: 1rem;
            }

            .service-icon {
                width: 50px;
                height: 50px;
            }

            .service-icon i {
                font-size: 1.5rem;
            }

            .action-icon {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
                min-width: 32px;
                min-height: 32px;
            }

            .form-head h2 {
                font-size: 1.4rem;
            }

            .form-body {
                padding: 20px 15px;
            }

            .form-field,
            .form-text,
            .form-select {
                padding: 10px 12px;
                font-size: 0.9rem;
                min-height: 40px;
            }

            .form-label {
                font-size: 0.9rem;
            }

            .form-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
                min-height: 40px;
            }

       
        }