.datatable-container {
    width: 100%;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}
.w-50px{
    width: 50px;
}
.h-50px{
    height: 50px;
}
/* Custom DataTable styling */
.custom-datatable {
    width: 100%;
    border-collapse: collapse;
}

.custom-datatable thead th {
    background-color: #f2f2f2;
    padding: 12px 15px;
    text-align: left;
    font-weight: bold;
    border-bottom: 2px solid #ddd;
}

.custom-datatable tbody td {
    padding: 10px 15px;
    border-bottom: 1px solid #ddd;
}

.custom-datatable tbody tr:hover {
    background-color: #f5f5f5;
}

/* DataTables wrapper styling */
.dataTables_wrapper {
    position: relative;
    clear: both;
}

/* Length (Show entries) menu - left aligned */
.dataTables_wrapper .dataTables_length {
    float: left;
    margin-bottom: 15px;
}

.dataTables_wrapper .dataTables_length select {
    padding: 4px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin: 0 5px;
}

/* Filter (Search box) - right aligned */
.dataTables_wrapper .dataTables_filter {
    float: right;
    margin-bottom: 15px;
}

.dataTables_wrapper .dataTables_filter input {
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-left: 5px;
}

/* Info (Showing X of Y entries) - left aligned */
.dataTables_wrapper .dataTables_info {
    float: left;
    margin-top: 10px;
}

/* Pagination - right aligned */
.dataTables_wrapper .dataTables_paginate {
    float: right;
    margin-top: 10px;
}

/* Pagination buttons */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 5px 10px;
    margin: 0 2px;
    border: 1px solid #ddd;
    background: #f2f2f2;
    cursor: pointer;
    border-radius: 3px;
    display: inline-block;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #555;
    color: white;
    border: 1px solid #555;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #ddd;
}

/* Clear floats */
.dataTables_wrapper:after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
}
/* .sidebar {
    width: 280px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    height: 100vh;
    overflow-y: auto;
}

.sidebar.collapsed {
    width: 70px;
}

.sidebar-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.sidebar-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.sidebar.collapsed .sidebar-title {
    opacity: 0;
}


.sidebar.collapsed .user-name,
.sidebar.collapsed .user-role {
    opacity: 0;
}

.nav-menu {
    padding: 20px 0;
}

.nav-item {
    margin-bottom: 5px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(5px);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-right: 3px solid #4ecdc4;
}

.nav-icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.nav-text {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.sidebar.collapsed .nav-text {
    opacity: 0;
}

.toggle-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.toggle-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}
.dashboard-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.welcome-title {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}
.welcome-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}
.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.stat-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}
.stat-change {
    color: #4ecdc4;
    font-size: 12px;
    font-weight: 600;
} */
.page-header{
    background-image: url('../images/demo-three/desk-concept-frame-with-items.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.custom-swiper-container {
    position: relative;
}

.custom-swiper-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    z-index: 10;
}

.custom-swiper-arrow.nav-prev {
    left: 8px;
}
.custom-swiper-arrow.nav-next {
    right: 8px;
}

.custom-swiper-arrow button {
    width: 28px;
    height: 28px;
    background-color: rgba(0, 0, 0, 0.4);
    border: none;
    padding: 0;
    border-radius: 50%;
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.custom-swiper-arrow button:hover {
    background-color: rgba(0, 0, 0, 0.6);
}
.sidebar-container{
    background: #f6f6f6;
}
.widget-title-custom {
    padding: 25px 30px;
    margin: 0;
    font-size: 24px;
    font-weight: 700; 
    position: relative;
    overflow: hidden;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.category-item:last-child {
    border-bottom: none;
}

.category-main {
    display: flex;
    align-items: center;
    padding: 18px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-main:hover {
    background: var(--color-primary);
    color: white;
}

.category-name {
    flex: 1;
    font-weight: 600;
    font-size: 16px;
}

.expand-icon {
    font-size: 16px;
    color: #555;
    background: #e6e6e6;
    border-radius: 50%;
    padding: 6px;
    margin-left: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: rotate(0deg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.08); 
}

.expand-icon:hover {
    /* background: var(--color-primary);
    color: white; */
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.category-item.expanded .expand-icon {
    transform: rotate(180deg);
}

.subcategory-list {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #f8f9ff;
}

.category-item.expanded .subcategory-list {
    max-height: 300px;
}

.subcategory-item {
    padding: 12px 30px 12px 65px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.subcategory-item:hover {
    background: #e3e8ff;
    color: #667eea;
}

.subcategory-item::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 50%;
    width: 4px;
    height: 4px;
    background: #667eea;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.subcategory-item:hover::before {
    width: 8px;
    height: 8px;
    background: #764ba2;
}

.subcategory-name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.category-item.active .category-main{
    background-color: var(--color-primary);
    color: #fff;
}
.category-item.active .category-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}
.packages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.packages .package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.packages .package-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.packages .package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.packages .package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.packages .package-card.featured {
    transform: scale(1.05);
    background: rgba(102, 126, 234, 0.1);
}

.packages .package-card.featured::before {
    height: 6px;
}

.packages .package-header {
    text-align: center;
    margin-bottom: 2rem;
}

.packages .package-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.packages .package-price {
    font-size: 3rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.packages .package-period {
    color: #666;
    font-size: 0.9rem;
}

.packages .package-description {
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

.packages .package-features {
    list-style: none;
    margin-bottom: 2rem;
}

.packages .package-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.packages .package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.packages .package-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.packages .package-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Active Package */
.active-package {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.active-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.active-package h3 {
    margin: 0 0 8px;
}
.active-package .highlight {
    font-weight: bold;
    font-size: 1.2rem;
    background: #fff;
    color: #007bff;
    padding: 2px 8px;
    border-radius: 6px;
}
.active-package .meta {
    font-size: 0.9rem;
    opacity: 0.9;
}
.active-package .icon {
    font-size: 2.5rem;
    opacity: 0.8;
}

/* Section Title */
.section-title {
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Package List */
.package-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.package-card {
    position: relative;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}
.package-card input {
    display: none;
}
.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.package-card input:checked + .card-content,
.package-card.selected {
    border-left: 5px solid #007bff;
    background: #f0f8ff;
}
.card-content {
    padding: 20px;
    text-align: center;
}
.package-card h4 {
    margin: 0 0 10px;
}
.price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #007bff;
}
.price span {
    font-size: 0.9rem;
    color: #666;
}
.details {
    margin-top: 8px;
    font-size: 0.95rem;
    color: #444;
}
.note {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #c00;
}
/* Disabled state */
.package-card.disabled {
    opacity: 0.6;
    pointer-events: none;
}
.customer-dashboard {
    display: flex;
    min-height: 100vh;
}
.customer-dashboard .sidebar {
    width: 280px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(226, 232, 240, 0.8);
    padding: 24px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.customer-dashboard .user-profile {
    padding: 0 24px 24px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    margin-bottom: 24px;
}

.customer-dashboard .user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.customer-dashboard .user-info:hover {
    transform: translateY(-1px);
}

.customer-dashboard .user-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.customer-dashboard .user-details h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
    color: #1a202c;
}

.customer-dashboard .user-details p {
    font-size: 14px;
    color: #718096;
}

.customer-dashboard .nav-menu {
    list-style: none;
}

.customer-dashboard .nav-item {
    margin-bottom: 4px;
}

.customer-dashboard .nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.customer-dashboard .nav-link:hover {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.1) 0%, transparent 100%);
    color: #667eea;
    transform: translateX(4px);
}

.customer-dashboard .nav-link.active {
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.15) 0%, transparent 100%);
    color: #667eea;
    font-weight: 600;
}

.customer-dashboard .nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.customer-dashboard .nav-icon {
    font-size: 18px;
}
.customer-dashboard .main-content {
    flex: 1;
    padding: 32px 40px;
    overflow-y: auto;
}

.customer-dashboard .header {
    margin-bottom: 32px;
}

.customer-dashboard .page-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.customer-dashboard .welcome-banner {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 32px;
    color: #667eea;
    font-weight: 500;
}

.customer-dashboard .content-section {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* margin-bottom: 24px; */
}

.customer-dashboard .section-header {
    display: flex;
    justify-content: between;
    align-items: center;
    margin-bottom: 24px;
}

.customer-dashboard .section-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
}

.customer-dashboard .section-subtitle {
    color: #718096;
    margin-bottom: 8px;
    line-height: 1.6;
}
.customer-dashboard .getting-started {
    margin-top: 32px;
}

.customer-dashboard .steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.customer-dashboard .step-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.5);
    position: relative;
    overflow: hidden;
}

.customer-dashboard .step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.customer-dashboard .step-card:hover::before {
    transform: scaleX(1);
}

.customer-dashboard .step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.customer-dashboard .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.customer-dashboard .step-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a202c;
}

.customer-dashboard .step-card p {
    font-size: 14px;
    color: #718096;
    line-height: 1.5;
}

/* Responsive design */
@media (max-width: 768px){
    .customer-dashboard .sidebar {
        width: 100%;
        position: sticky;
        top: 0;
        z-index: 10;
    }
    
    .customer-dashboard .main-content {
        padding: 20px;
    }
    
    .customer-dashboard .steps-container {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {    
    .category-main {
        padding: 15px 20px;
    }
    .packages .package-card{
        padding: 1.8rem;
    }
    .subcategory-item {
        padding: 10px 20px 10px 50px;
    }
}