/* ============================================
   Enhanced Sidebar Styles for JB ILP Service
   Modern Design System Update
   ============================================ */

/* Modern Sidebar Variables */
:root {
    --sidebar-bg: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    --sidebar-admin-bg: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    --sidebar-header-bg: linear-gradient(135deg, #0f4c5c 0%, #1a5f6e 50%, #256b7a 100%);
    --sidebar-admin-header-bg: linear-gradient(135deg, #374151 0%, #4b5563 50%, #6b7280 100%);
    --sidebar-item-hover: #f8f9fa;
    --sidebar-item-active: linear-gradient(90deg, #e3f2fd 0%, #f8f9fa 100%);
    --sidebar-border: rgba(0, 0, 0, 0.08);
    --sidebar-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --sidebar-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --modern-radius: 12px;
}

/* Sidebar Layout Base */
.sidebar-layout {
    padding-top: 70px;
}

.main-content-wrapper {
    min-height: calc(100vh - 70px);
    background-color: #f8f9fa;
}

.admin-content-wrapper {
    background-color: #f5f7fa;
}

/* Modern Sidebar Container */
.enhanced-sidebar {
    background: var(--sidebar-bg);
    border-right: 1px solid var(--sidebar-border);
    min-height: calc(100vh - 70px);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 70px;
    z-index: 1020;
    transition: var(--sidebar-transition);
}

.modern-sidebar {
    border-right: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: var(--sidebar-shadow);
}

.admin-sidebar {
    background: var(--sidebar-admin-bg);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.admin-modern-sidebar {
    border-right: 3px solid #f59e0b;
    box-shadow: 2px 0 15px rgba(245, 158, 11, 0.1);
}

.sidebar-content {
    padding: 1.5rem 0;
}

/* Modern Sidebar Header/Title Box */
.sidebar-menu-box {
    background: var(--sidebar-header-bg);
    color: white;
    margin: 0 1rem 2rem 1rem;
    padding: 1.5rem;
    border-radius: var(--modern-radius);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(15, 76, 92, 0.3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    min-height: auto;
    line-height: 1.3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--sidebar-transition);
}

/* Modern Sidebar Header Box */
.modern-sidebar-menu-box {
    padding: 1.5rem 1rem;
    margin: 0 1rem 1.5rem 1rem;
}

.modern-sidebar-menu-box .sidebar-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.modern-sidebar-menu-box .sidebar-header-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.modern-sidebar-menu-box .sidebar-header-text {
    flex: 1;
}

.modern-sidebar-menu-box .sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.modern-sidebar-menu-box .sidebar-subtitle {
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1.2;
}

/* Admin Sidebar Header */
.admin-sidebar-menu-box {
    background: var(--sidebar-admin-header-bg);
    border: 2px solid rgba(245, 158, 11, 0.3);
}

.admin-sidebar-menu-box .sidebar-header-icon {
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
}

.sidebar-menu-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.sidebar-menu-box:hover::before {
    left: 100%;
}

/* Admin Sidebar Header */
.admin-sidebar .sidebar-menu-box {
    background: linear-gradient(135deg, #374151 0%, #4b5563 50%, #6b7280 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Modern Sidebar Sections */
.sidebar-section {
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.modern-sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section-header {
    background: linear-gradient(135deg, #64b5f6 0%, #42a5f5 100%);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: var(--modern-radius);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(100, 181, 246, 0.3);
    transition: var(--sidebar-transition);
}

.modern-sidebar-section-header {
    border-radius: var(--modern-radius) var(--modern-radius) 0 0;
    margin-bottom: 0;
}

.sidebar-section-header:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(100, 181, 246, 0.4);
}

.sidebar-section-header i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* Modern Sidebar Menu Container */
.sidebar-menu-container {
    background: white;
    border-radius: var(--modern-radius);
    overflow: hidden;
    box-shadow: var(--sidebar-shadow);
    border: 1px solid var(--sidebar-border);
}

.modern-sidebar-menu-container {
    border-radius: 0 0 var(--modern-radius) var(--modern-radius);
}

.admin-sidebar-menu-container {
    border-left: 3px solid #f59e0b;
}

/* Modern Sidebar Menu Items */
.sidebar-menu-item {
    display: block;
    padding: 0.875rem 1rem;
    color: #495057;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--sidebar-transition);
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

.modern-sidebar-menu-item {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modern-sidebar-menu-item i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
    transition: var(--sidebar-transition);
}

.single-menu-item {
    border-left: 4px solid transparent;
}

.sidebar-menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #0f4c5c, rgba(15, 76, 92, 0.1));
    transition: width 0.3s ease;
    z-index: 1;
}

.sidebar-menu-item:hover::before {
    width: 4px;
}

.sidebar-menu-item:hover {
    background-color: var(--sidebar-item-hover);
    color: #0f4c5c;
    text-decoration: none;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modern-sidebar-menu-item:hover {
    background: linear-gradient(90deg, #f8f9fa 0%, #e9ecef 100%);
    transform: translateX(2px);
}

.modern-sidebar-menu-item:hover i {
    transform: scale(1.1);
    color: #0f4c5c;
}

.sidebar-menu-item.active {
    background: var(--sidebar-item-active);
    color: #1976d2;
    font-weight: 600;
    border-left: 4px solid #1976d2;
    transform: translateX(2px);
}

.modern-sidebar-menu-item.active {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1565c0;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.2);
}

.sidebar-menu-item.active::before {
    width: 4px;
    background: #1976d2;
}

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

.sidebar-menu-item i {
    width: 20px;
    text-align: center;
    margin-right: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.sidebar-menu-item:hover i {
    transform: scale(1.1);
}

/* Modern Sidebar Menu Item Header (for expandable menus) */
.sidebar-menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0.875rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--modern-radius);
    margin-bottom: 0.5rem;
    transition: var(--sidebar-transition);
    font-weight: 600;
    color: #495057;
}

.modern-sidebar-menu-item-header {
    padding: 1rem 1.25rem;
    margin-bottom: 0;
    border-radius: var(--modern-radius) var(--modern-radius) 0 0;
}

.modern-sidebar-menu-item-header .menu-item-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-menu-item-header:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #0f4c5c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sidebar-menu-item-header.active {
    background: linear-gradient(135deg, #0f4c5c 0%, #1a5f6e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(15, 76, 92, 0.3);
}

.sidebar-menu-item-header.active .toggle-icon {
    color: white;
    transform: rotate(45deg);
}

/* Modern Toggle Icon */
.toggle-icon {
    font-size: 1.2rem;
    font-weight: bold;
    transition: var(--sidebar-transition);
    color: #6c757d;
}

.modern-toggle-icon {
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.toggle-icon.rotated {
    transform: rotate(45deg);
    color: #0f4c5c;
}

/* Modern Sidebar Submenu */
.sidebar-submenu {
    background: white;
    border-radius: var(--modern-radius);
    margin: 0.5rem 1rem 1rem 1rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--sidebar-border);
    overflow: hidden;
    animation: slideDown 0.3s ease-out;
}

.modern-sidebar-submenu {
    margin: 0;
    border-radius: 0 0 var(--modern-radius) var(--modern-radius);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    animation: none;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        max-height: 500px;
        transform: translateY(0);
    }
}

.sidebar-submenu-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #6c757d;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    transition: var(--sidebar-transition);
    position: relative;
}

.modern-sidebar-submenu-item {
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #495057;
}

.sidebar-submenu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #64b5f6, rgba(100, 181, 246, 0.2));
    transition: width 0.3s ease;
}

.sidebar-submenu-item:hover::before {
    width: 3px;
}

.sidebar-submenu-item:hover {
    background-color: #f0f8ff;
    color: #0f4c5c;
    text-decoration: none;
    padding-left: 2rem;
    font-weight: 500;
}

.modern-sidebar-submenu-item:hover {
    background: linear-gradient(90deg, #e3f2fd 0%, #f0f8ff 100%);
    padding-left: 1.25rem;
    transform: translateX(4px);
}

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

.sidebar-submenu-item i {
    width: 16px;
    text-align: center;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* Modern Badge Styles in Sidebar */
.sidebar-menu-item .badge,
.sidebar-submenu-item .badge {
    font-size: 0.7rem;
    padding: 0.25em 0.5em;
    border-radius: 10px;
    margin-left: 0.5rem;
    background: linear-gradient(135deg, #ff4757, #ff3838);
    color: white;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(255, 71, 87, 0.3);
    animation: pulse 2s infinite;
}

.modern-badge {
    border-radius: 12px;
    font-size: 0.65rem;
    padding: 0.3em 0.6em;
    font-weight: 700;
    margin-left: auto;
    position: relative;
}

.pulse-badge {
    animation: badgePulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes badgePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 2px 4px rgba(255, 71, 87, 0.3);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 4px 8px rgba(255, 71, 87, 0.5);
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #0f4c5c 0%, #1a5f6e 50%, #256b7a 100%);
    color: white;
    padding: 2rem 0 1rem;
    box-shadow: 0 2px 10px rgba(15, 76, 92, 0.3);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(10px);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header .breadcrumb-item a:hover {
    color: white;
}

.page-header .breadcrumb-item.active {
    color: white;
    font-weight: 500;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Admin Page Header */
.admin-page-header {
    background: linear-gradient(135deg, #374151 0%, #4b5563 50%, #6b7280 100%);
    border-bottom: 3px solid #f59e0b;
}

.admin-page-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.admin-page-icon {
    font-size: 2.5rem;
    color: #f59e0b;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.admin-breadcrumb {
    background: rgba(245, 158, 11, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
}

.admin-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

/* Admin Quick Stats */
.admin-quick-stats {
    display: flex;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item i {
    font-size: 1.5rem;
    margin-right: 0.75rem;
}

.stat-info {
    text-align: left;
}

.stat-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
}

/* Content Areas */
.content-wrapper,
.admin-content-wrapper {
    padding: 0.5rem 0.2rem;
    background: white;
    border-radius: 12px;
    margin: 0.2rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.admin-content-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-left: 4px solid #f59e0b;
}

/* Enhanced Header for Sidebar Layout */
.enhanced-sidebar-header {
    background: linear-gradient(135deg, #0f4c5c 0%, #1a5f6e 50%, #256b7a 100%);
    box-shadow: 0 2px 20px rgba(15, 76, 92, 0.4);
}

.enhanced-admin-header {
    background: linear-gradient(135deg, #374151 0%, #4b5563 50%, #6b7280 100%);
    box-shadow: 0 2px 20px rgba(55, 65, 81, 0.4);
}

/* Admin Specific Styles */
.admin-brand-icon {
    color: #f59e0b !important;
}

.admin-actions {
    gap: 1rem;
}

.system-status {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-text {
    font-size: 0.9rem;
    color: white;
    font-weight: 500;
}

.pending-tasks {
    position: relative;
}

.pending-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.pending-btn:hover {
    background: rgba(245, 158, 11, 0.3);
    color: white;
    transform: translateY(-1px);
}

.pending-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5px;
    right: -5px;
    border: 2px solid white;
}

.pending-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.admin-notification-btn {
    background: rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.admin-user-menu .admin-user-profile {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.admin-avatar {
    color: #f59e0b !important;
}

.admin-dropdown {
    border: 1px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 10px 40px rgba(55, 65, 81, 0.2);
}

/* Modern Responsive Design for Sidebar */
@media (max-width: 991.98px) {
    .enhanced-sidebar,
    .admin-sidebar,
    .modern-sidebar,
    .admin-modern-sidebar {
        position: static;
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid var(--sidebar-border);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    
    .main-content-wrapper {
        padding-top: 0;
    }
    
    .sidebar-content {
        padding: 1rem 0;
    }
    
    .sidebar-menu-box,
    .modern-sidebar-menu-box {
        font-size: 1rem;
        padding: 1rem;
        margin: 0 0.5rem 1rem 0.5rem;
    }
    
    .sidebar-section,
    .modern-sidebar-section {
        padding: 0 0.5rem;
    }
    
    .page-header,
    .admin-page-header,
    .modern-page-header,
    .admin-modern-page-header {
        padding: 1.5rem 0 1rem;
    }
    
    .page-title,
    .admin-page-title,
    .modern-page-title,
    .admin-modern-page-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    .sidebar-layout {
        padding-top: 60px;
    }
    
    .enhanced-sidebar,
    .admin-sidebar {
        min-height: auto;
        margin-bottom: 1rem;
    }
    
    .sidebar-menu-box {
        font-size: 0.9rem;
        padding: 0.75rem;
        margin: 0 0.25rem 0.75rem 0.25rem;
    }
    
    .content-wrapper,
    .admin-content-wrapper {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .admin-quick-stats,
    .modern-admin-quick-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stat-item,
    .modern-stat-item {
        padding: 0.5rem 0.75rem;
    }
    
    .modern-sidebar-menu-box .sidebar-header-content {
        gap: 0.75rem;
    }
    
    .modern-sidebar-menu-box .sidebar-header-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .modern-sidebar-menu-box .sidebar-title {
        font-size: 1rem;
    }
    
    .modern-sidebar-menu-box .sidebar-subtitle {
        font-size: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .page-header,
    .admin-page-header {
        padding: 1rem 0 0.5rem;
    }
    
    .page-title,
    .admin-page-title {
        font-size: 1.5rem;
    }
    
    .admin-page-icon {
        font-size: 2rem;
    }
    
    .sidebar-section-header {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }
    
    .sidebar-menu-item,
    .sidebar-submenu-item {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

/* Animation Enhancements */
.sidebar-menu-item,
.sidebar-submenu-item,
.sidebar-menu-item-header {
    animation: fadeInUp 0.3s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Focus States */
.sidebar-menu-item:focus,
.sidebar-submenu-item:focus,
.sidebar-menu-item-header:focus {
    outline: 2px solid #64b5f6;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Print Styles */
@media print {
    .enhanced-sidebar,
    .admin-sidebar,
    .page-header,
    .admin-page-header {
        display: none !important;
    }
    
    .main-content-wrapper {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    .content-wrapper,
    .admin-content-wrapper {
        box-shadow: none !important;
        border: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}
