/* =====================================================
   Ekspedisi Florest - Premium UI Stylesheet
   ===================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* =====================================================
   CSS Variables
   ===================================================== */
:root {
    --primary: #4F46E5;
    --primary-dark: #4338CA;
    --primary-light: #818CF8;
    --secondary: #0EA5E9;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #06B6D4;
    
    --dark: #1E293B;
    --dark-light: #334155;
    --gray: #64748B;
    --gray-light: #94A3B8;
    --light: #F1F5F9;
    --white: #FFFFFF;
    
    --gradient-primary: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    --gradient-secondary: linear-gradient(135deg, #0EA5E9 0%, #06B6D4 100%);
    --gradient-success: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    --gradient-warning: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    --gradient-danger: linear-gradient(135deg, #EF4444 0%, #F87171 100%);
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    --sidebar-width: 280px;
    --header-height: 70px;
    
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* =====================================================
   Base Styles
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--dark);
    background-color: #F8FAFC;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
}

/* =====================================================
   Lucide Icons (SVG)
   ===================================================== */
[data-lucide] {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    vertical-align: middle;
}

.sidebar-logo [data-lucide] {
    width: 32px;
    height: 32px;
    stroke: white;
}

.menu-item [data-lucide] {
    width: 20px;
    height: 20px;
    stroke: rgba(255,255,255,0.8);
    flex-shrink: 0;
}

.menu-item.active [data-lucide],
.menu-item:hover [data-lucide] {
    stroke: white;
}

.stats-icon [data-lucide] {
    width: 28px;
    height: 28px;
}

.btn [data-lucide] {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

.btn-icon [data-lucide] {
    width: 16px;
    height: 16px;
    margin: 0;
}

.btn-icon.sm [data-lucide] {
    width: 14px;
    height: 14px;
}

.input-icon [data-lucide] {
    width: 18px;
    height: 18px;
    stroke: var(--gray);
}

.alert [data-lucide] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.card-header [data-lucide] {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.dropdown-item [data-lucide] {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.badge [data-lucide] {
    width: 12px;
    height: 12px;
    margin-right: 4px;
}

.empty-state [data-lucide] {
    width: 64px;
    height: 64px;
    stroke: var(--gray-light);
    margin-bottom: 16px;
}

.header-icon [data-lucide] {
    width: 22px;
    height: 22px;
}

.timeline-icon [data-lucide] {
    width: 16px;
    height: 16px;
}

h5 [data-lucide],
h6 [data-lucide] {
    margin-right: 8px;
}

/* =====================================================
   Animations
   ===================================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px var(--primary-light); }
    50% { box-shadow: 0 0 20px var(--primary-light), 0 0 30px var(--primary); }
}

.animate-fadeIn { animation: fadeIn 0.5s ease forwards; }
.animate-fadeInUp { animation: fadeInUp 0.5s ease forwards; }
.animate-fadeInDown { animation: fadeInDown 0.5s ease forwards; }
.animate-fadeInLeft { animation: fadeInLeft 0.5s ease forwards; }
.animate-fadeInRight { animation: fadeInRight 0.5s ease forwards; }
.animate-scaleIn { animation: scaleIn 0.3s ease forwards; }
.animate-pulse { animation: pulse 2s infinite; }
.animate-bounce { animation: bounce 1s infinite; }
.animate-spin { animation: spin 1s linear infinite; }
.animate-float { animation: float 3s ease-in-out infinite; }
.animate-glow { animation: glow 2s ease-in-out infinite; }

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* =====================================================
   Login Page
   ===================================================== */
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.login-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: spin 30s linear infinite;
}

.login-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.login-bg-shapes span {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.login-bg-shapes span:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.login-bg-shapes span:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.login-bg-shapes span:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 2s;
}

.login-bg-shapes span:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 70%;
    animation-delay: 3s;
}

.login-card {
    width: 100%;
    max-width: 420px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: 40px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease;
}

.login-logo {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo i {
    font-size: 48px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: float 3s ease-in-out infinite;
}

.login-logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 10px;
}

.login-logo p {
    color: var(--gray);
    font-size: 14px;
}

/* =====================================================
   Layout - Sidebar
   ===================================================== */
.app-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: var(--sidebar-width);
    background: var(--gradient-primary);
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 1000;
    transition: var(--transition);
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar::-webkit-scrollbar {
    width: 5px;
}

.sidebar::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
}

.sidebar::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
}

.sidebar-header {
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--white);
}

.sidebar-logo i {
    font-size: 32px;
    animation: float 3s ease-in-out infinite;
}

.sidebar-logo h1 {
    font-size: 20px;
    font-weight: 700;
}

.sidebar-logo span {
    font-size: 11px;
    opacity: 0.8;
    display: block;
    margin-top: 2px;
}

.sidebar-menu {
    padding: 20px 0;
}

.menu-label {
    padding: 10px 25px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
}

.menu-item {
    display: block;
    padding: 12px 25px;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-fast);
    position: relative;
    margin: 2px 12px;
    border-radius: var(--radius);
}

.menu-item i {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.menu-item:hover {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    transform: translateX(5px);
}

.menu-item.active {
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.menu-item .badge {
    margin-left: auto;
    background: var(--danger);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

/* =====================================================
   Layout - Main Content
   ===================================================== */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    min-height: 100vh;
    transition: var(--transition);
}

/* Header */
.top-header {
    height: var(--header-height);
    background: var(--white);
    border-bottom: 1px solid var(--light);
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--dark);
    cursor: pointer;
    padding: 5px;
}

.page-title h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.page-title p {
    font-size: 13px;
    color: var(--gray);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
}

.header-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.header-icon .notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    background: var(--danger);
    color: var(--white);
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    animation: pulse 2s infinite;
}

.user-dropdown {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 15px;
    background: var(--light);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-fast);
}

.user-dropdown:hover {
    background: #E2E8F0;
}

.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.user-info h6 {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}

.user-info span {
    font-size: 11px;
    color: var(--gray);
}

/* Content Area */
.content-area {
    padding: 30px;
}

/* =====================================================
   Cards
   ===================================================== */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: none;
    overflow: hidden;
    transition: var(--transition);
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-header {
    padding: 20px 25px;
    background: var(--white);
    border-bottom: 1px solid var(--light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-header h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-header h5 i {
    color: var(--primary);
}

.card-body {
    padding: 25px;
}

/* Stats Cards */
.stats-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stats-card.primary::before { background: var(--gradient-primary); }
.stats-card.success::before { background: var(--gradient-success); }
.stats-card.warning::before { background: var(--gradient-warning); }
.stats-card.danger::before { background: var(--gradient-danger); }
.stats-card.info::before { background: var(--gradient-secondary); }

.stats-card .stats-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
}

.stats-card.primary .stats-icon { background: rgba(79, 70, 229, 0.1); color: var(--primary); }
.stats-card.success .stats-icon { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.stats-card.warning .stats-icon { background: rgba(245, 158, 11, 0.1); color: var(--warning); }
.stats-card.danger .stats-icon { background: rgba(239, 68, 68, 0.1); color: var(--danger); }
.stats-card.info .stats-icon { background: rgba(14, 165, 233, 0.1); color: var(--secondary); }

.stats-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.stats-card p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

.stats-card .stats-change {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-top: 10px;
}

.stats-card .stats-change.up {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.stats-card .stats-change.down {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

/* =====================================================
   Forms
   ===================================================== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-label .required {
    color: var(--danger);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    border: 2px solid var(--light);
    border-radius: var(--radius);
    transition: var(--transition-fast);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.form-control::placeholder {
    color: var(--gray-light);
}

.form-control.is-invalid {
    border-color: var(--danger);
}

.invalid-feedback {
    font-size: 12px;
    color: var(--danger);
    margin-top: 5px;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.input-icon .form-control {
    padding-left: 45px;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 45px;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--white);
}

.btn-success {
    background: var(--gradient-success);
    color: var(--white);
}

.btn-warning {
    background: var(--gradient-warning);
    color: var(--white);
}

.btn-danger {
    background: var(--gradient-danger);
    color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-light {
    background: var(--light);
    color: var(--dark);
}

.btn-light:hover {
    background: #E2E8F0;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-icon.sm {
    width: 32px;
    height: 32px;
}

.btn-icon.btn-light {
    background: #f0f0f0;
    border: 1px solid #ddd;
    color: #555;
}

.btn-icon.btn-light:hover {
    background: #e0e0e0;
    color: #333;
}

.btn-icon.btn-light [data-lucide] {
    color: #555;
    stroke: currentColor;
}

.btn-icon.btn-light.text-danger [data-lucide] {
    color: #dc3545;
}

/* =====================================================
   Tables
   ===================================================== */
.table-responsive {
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table thead th {
    padding: 15px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gray);
    background: var(--light);
    border-bottom: 2px solid #E2E8F0;
}

.table tbody td {
    padding: 15px;
    border-bottom: 1px solid var(--light);
    vertical-align: middle;
}

.table tbody tr {
    transition: var(--transition-fast);
}

.table tbody tr:hover {
    background: rgba(79, 70, 229, 0.02);
}

.table .table-img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    object-fit: cover;
}

/* =====================================================
   Badges & Status
   ===================================================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
}

.badge-primary { background: rgba(79, 70, 229, 0.1); color: var(--primary); }
.badge-secondary { background: rgba(14, 165, 233, 0.1); color: var(--secondary); }
.badge-success { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.badge-warning { background: rgba(245, 158, 11, 0.1); color: var(--warning); }
.badge-danger { background: rgba(239, 68, 68, 0.1); color: var(--danger); }
.badge-info { background: rgba(6, 182, 212, 0.1); color: var(--info); }
.badge-dark { background: rgba(30, 41, 59, 0.1); color: var(--dark); }

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.success { background: var(--success); }
.status-dot.warning { background: var(--warning); }
.status-dot.danger { background: var(--danger); }
.status-dot.info { background: var(--info); }

/* =====================================================
   Alerts
   ===================================================== */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    animation: fadeInDown 0.3s ease;
}

.alert i {
    font-size: 20px;
    flex-shrink: 0;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid var(--success);
    color: var(--success);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid var(--danger);
    color: var(--danger);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border-left: 4px solid var(--warning);
    color: var(--warning);
}

.alert-info {
    background: rgba(14, 165, 233, 0.1);
    border-left: 4px solid var(--secondary);
    color: var(--secondary);
}

/* =====================================================
   Modal
   ===================================================== */
.modal-backdrop {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    border: none;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    animation: scaleIn 0.3s ease;
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--light);
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--light);
}

/* =====================================================
   Utilities
   ===================================================== */
.text-primary { color: var(--primary) !important; }
.text-success { color: var(--success) !important; }
.text-warning { color: var(--warning) !important; }
.text-danger { color: var(--danger) !important; }
.text-muted { color: var(--gray) !important; }

.bg-light { background: var(--light) !important; }
.bg-white { background: var(--white) !important; }

.fw-bold { font-weight: 700 !important; }
.fw-semibold { font-weight: 600 !important; }
.fw-medium { font-weight: 500 !important; }

.rounded { border-radius: var(--radius) !important; }
.rounded-lg { border-radius: var(--radius-lg) !important; }

.shadow { box-shadow: var(--shadow) !important; }
.shadow-lg { box-shadow: var(--shadow-lg) !important; }

.cursor-pointer { cursor: pointer; }

/* Desktop/Mobile visibility utilities */
.mobile-only { display: none; }
.desktop-only { display: block; }

@media (max-width: 768px) {
    .mobile-only { display: block !important; }
    .desktop-only { display: none !important; }
}

/* =====================================================
   Empty State
   ===================================================== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 64px;
    color: var(--gray-light);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.empty-state h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--gray);
    max-width: 300px;
    margin: 0 auto 20px;
}

/* =====================================================
   Loading
   ===================================================== */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* =====================================================
   Dropdown
   ===================================================== */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 10px;
    animation: fadeInDown 0.2s ease;
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--light);
    color: var(--primary);
}

.dropdown-item i {
    width: 18px;
    text-align: center;
}

/* =====================================================
   Pagination
   ===================================================== */
.pagination {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-link {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
    background: var(--white);
    border: 1px solid var(--light);
    transition: var(--transition-fast);
}

.page-link:hover {
    background: var(--light);
    color: var(--primary);
}

.page-item.active .page-link {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

/* =====================================================
   Responsive - Tablet
   ===================================================== */
@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .content-area {
        padding: 20px;
    }
}

/* =====================================================
   Responsive - Mobile (Main Mobile Styles) - App Like
   ===================================================== */
@media (max-width: 768px) {
    :root {
        --header-height: 52px;
    }
    
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    body {
        font-size: 14px;
        background: #F0F2F5;
        overflow-x: hidden;
    }
    
    /* ===== HEADER MOBILE ===== */
    .top-header {
        padding: 0 10px;
        height: var(--header-height);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: var(--gradient-primary);
        border: none;
        box-shadow: 0 2px 8px rgba(79, 70, 229, 0.25);
    }
    
    .top-header .page-title h2 {
        font-size: 15px;
        font-weight: 600;
        color: white;
    }
    
    .top-header .page-title p {
        display: none;
    }
    
    .header-right {
        gap: 4px;
    }
    
    .top-header .header-icon {
        width: 32px;
        height: 32px;
        background: rgba(255,255,255,0.15);
        color: white;
        border-radius: 8px;
    }
    
    .top-header .header-icon [data-lucide] {
        width: 18px;
        height: 18px;
        stroke: white;
    }
    
    .top-header .header-icon .notification-badge {
        width: 16px;
        height: 16px;
        font-size: 9px;
        top: -4px;
        right: -4px;
    }
    
    .user-dropdown {
        padding: 4px;
        background: rgba(255,255,255,0.15);
        border-radius: 8px;
    }
    
    .user-dropdown .user-info,
    .user-dropdown [data-lucide="chevron-down"] {
        display: none;
    }
    
    .user-dropdown .user-avatar {
        width: 28px;
        height: 28px;
        font-size: 11px;
        background: white;
        color: var(--primary);
    }
    
    .menu-toggle {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: rgba(255,255,255,0.15);
        color: white;
    }
    
    .menu-toggle [data-lucide] {
        width: 18px;
        height: 18px;
        stroke: white;
    }
    
    /* ===== MAIN CONTENT ===== */
    .main-content {
        margin-left: 0 !important;
        padding-top: var(--header-height);
        padding-bottom: 65px;
        min-height: 100vh;
        background: #F0F2F5;
    }
    
    .content-area {
        padding: 8px;
        display: block !important;
        visibility: visible !important;
    }
    
    /* FORCE SHOW Stats Cards on Mobile */
    .row.g-4, .row.g-4.mb-4 {
        display: flex !important;
        flex-wrap: wrap !important;
        visibility: visible !important;
    }
    
    .row.g-4 > [class*="col-"] {
        display: block !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    .stats-card {
        display: flex !important;
        visibility: visible !important;
    }
    
    .card {
        display: block !important;
        visibility: visible !important;
    }
    
    .table-responsive {
        display: block !important;
        overflow-x: auto !important;
    }
    
    /* ===== CARDS ===== */
    .card {
        border-radius: 12px;
        margin-bottom: 8px;
        border: none;
        box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    }
    
    .card-header {
        padding: 10px 12px;
        gap: 6px;
    }
    
    .card-header h5 {
        font-size: 13px;
        font-weight: 600;
    }
    
    .card-header h5 [data-lucide] {
        width: 16px;
        height: 16px;
    }
    
    .card-body {
        padding: 10px 12px;
    }
    
    .card-body.p-0 {
        padding: 0 !important;
    }
    
    /* ===== FORMS - Compact Native Style ===== */
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 14px;
        border-radius: 8px;
        min-height: 42px;
        border: 1px solid #DDD;
        background: #FAFAFA;
    }
    
    .form-control:focus {
        background: white;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
    }
    
    .form-select {
        min-height: 42px;
        font-size: 14px;
        border-radius: 8px;
        border: 1px solid #DDD;
        background-color: #FAFAFA;
        padding: 10px 12px;
    }
    
    .form-label {
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 6px;
        color: #555;
    }
    
    textarea.form-control {
        min-height: 80px;
        resize: none;
    }
    
    .input-icon .form-control {
        padding-left: 40px;
    }
    
    .input-icon i,
    .input-icon [data-lucide] {
        left: 12px;
        width: 16px;
        height: 16px;
    }
    
    /* ===== BUTTONS - Compact ===== */
    .btn {
        padding: 10px 16px;
        font-size: 13px;
        font-weight: 600;
        border-radius: 8px;
        min-height: 40px;
    }
    
    .btn:hover {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
    
    .btn-sm {
        padding: 8px 12px;
        font-size: 12px;
        min-height: 34px;
        border-radius: 6px;
    }
    
    .btn-lg {
        padding: 12px 20px;
        font-size: 14px;
        min-height: 46px;
    }
    
    .btn-icon {
        width: 36px;
        height: 36px;
        min-height: 36px;
        padding: 0;
        border-radius: 8px;
    }
    
    .btn-icon.sm {
        width: 30px;
        height: 30px;
        min-height: 30px;
        border-radius: 6px;
    }
    
    .btn-icon [data-lucide] {
        width: 16px;
        height: 16px;
    }
    
    /* Hide only desktop-only class, keep tables visible */
    .desktop-only {
        display: none !important;
    }
    
    /* Tables scroll horizontally on mobile */
    .table-responsive {
        display: block !important;
        overflow-x: auto;
    }
    
    /* Badges Mobile */
    .badge {
        padding: 5px 10px;
        font-size: 10px;
        border-radius: 8px;
        font-weight: 600;
    }
    
    /* Alert Mobile */
    .alert {
        padding: 14px 16px;
        border-radius: 12px;
        font-size: 14px;
    }
    
    /* Modal Mobile */
    .modal-dialog {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .modal-content {
        border-radius: var(--radius-lg);
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 16px;
    }
    
    /* Pagination Mobile */
    .pagination {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .page-link {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    
    /* Empty State Mobile */
    .empty-state {
        padding: 40px 20px;
    }
    
    .empty-state [data-lucide] {
        width: 56px;
        height: 56px;
    }
    
    /* Sidebar Mobile */
    .sidebar {
        width: 85%;
        max-width: 320px;
    }
    
    .sidebar-header {
        padding: 20px 16px;
    }
    
    .sidebar-logo h1 {
        font-size: 18px;
    }
    
    .sidebar-logo span {
        font-size: 11px;
    }
    
    .menu-item {
        padding: 14px 20px;
        margin: 4px 10px;
        font-size: 15px;
    }
    
    .menu-label {
        padding: 12px 20px 8px;
        font-size: 11px;
    }
    
    /* Login Mobile */
    .login-wrapper {
        padding: 16px;
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }
    
    .login-card {
        padding: 28px 20px;
        border-radius: var(--radius-lg);
        max-width: 100%;
        width: 100%;
    }
    
    .login-logo h1 {
        font-size: 20px;
    }
    
    .login-logo p {
        font-size: 12px;
    }
    
    .login-logo [data-lucide],
    .login-logo svg {
        width: 48px !important;
        height: 48px !important;
    }
    
    .login-logo img {
        max-height: 50px !important;
        max-width: 50px !important;
    }
    
    .login-bg-shapes {
        display: none; /* Hide on mobile for performance */
    }
    
    /* Dropdown Mobile */
    .dropdown-menu {
        min-width: 200px;
    }
    
    .dropdown-item {
        padding: 12px 16px;
        font-size: 14px;
    }
    
    /* Row & Grid Adjustments */
    .row.g-4 {
        --bs-gutter-x: 12px;
        --bs-gutter-y: 12px;
    }
    
    /* Action buttons wrap */
    .d-flex.gap-2,
    .d-flex.gap-3 {
        flex-wrap: wrap;
    }
    
    .d-flex.gap-2 > .btn,
    .d-flex.gap-3 > .btn {
        flex: 1 1 auto;
        min-width: 120px;
    }
}

/* =====================================================
   Responsive - Small Mobile
   ===================================================== */
@media (max-width: 576px) {
    .content-area {
        padding: 12px;
    }
    
    .row.g-4 {
        --bs-gutter-x: 10px;
        --bs-gutter-y: 10px;
    }
    
    .stats-card {
        padding: 14px;
    }
    
    .stats-card h3 {
        font-size: 20px;
    }
    
    .card-header {
        padding: 14px;
    }
    
    .card-body {
        padding: 14px;
    }
    
    /* Full width buttons on very small screens */
    .d-flex.justify-content-end.gap-2 {
        flex-direction: column;
    }
    
    .d-flex.justify-content-end.gap-2 > .btn {
        width: 100%;
    }
}

/* =====================================================
   Mobile Bottom Navigation (App-like) - Compact
   ===================================================== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #EEE;
    padding: 4px 0;
    padding-bottom: max(4px, env(safe-area-inset-bottom));
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    color: #999;
    text-decoration: none;
    position: relative;
}

.mobile-nav-item [data-lucide] {
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
    stroke: currentColor;
}

.mobile-nav-item span {
    font-size: 9px;
    font-weight: 500;
}

.mobile-nav-item.active {
    color: var(--primary);
}

.mobile-nav-item.active [data-lucide] {
    stroke: var(--primary);
}

.mobile-nav-item:active {
    opacity: 0.7;
}

/* Mobile Nav Badge */
.mobile-nav-item .nav-badge {
    position: absolute;
    top: 2px;
    right: 8px;
    min-width: 14px;
    height: 14px;
    background: #EF4444;
    color: white;
    font-size: 8px;
    font-weight: 700;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
}

/* =====================================================
   Mobile FAB (Floating Action Button)
   ===================================================== */
.mobile-fab {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.4);
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .mobile-fab {
        display: flex;
    }
}

.mobile-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(79, 70, 229, 0.5);
}

.mobile-fab:active {
    transform: scale(0.95);
}

.mobile-fab [data-lucide] {
    width: 24px;
    height: 24px;
    stroke: white;
}

/* =====================================================
   Safe Area Support (iPhone Notch)
   ===================================================== */
@supports (padding: max(0px)) {
    .top-header {
        padding-top: max(0px, env(safe-area-inset-top));
    }
    
    @media (max-width: 768px) {
        .main-content {
            padding-bottom: max(80px, calc(70px + env(safe-area-inset-bottom)));
        }
        
        .sidebar {
            padding-top: max(0px, env(safe-area-inset-top));
        }
    }
}

/* =====================================================
   Touch Optimizations
   ===================================================== */
@media (hover: none) and (pointer: coarse) {
    /* Better touch targets */
    .btn {
        min-height: 48px;
    }
    
    .form-control,
    .form-select {
        min-height: 48px;
    }
    
    .menu-item {
        min-height: 48px;
    }
    
    .dropdown-item {
        min-height: 44px;
    }
    
    /* Remove hover effects on touch */
    .btn:hover {
        transform: none;
    }
    
    .stats-card:hover {
        transform: none;
    }
    
    .card:hover {
        box-shadow: var(--shadow);
    }
    
    /* Active states for touch */
    .btn:active {
        transform: scale(0.98);
        opacity: 0.9;
    }
    
    .stats-card:active {
        transform: scale(0.98);
    }
    
    .menu-item:active {
        transform: translateX(5px);
        background: rgba(255,255,255,0.2);
    }
}

/* =====================================================
   Mobile Card List View
   ===================================================== */
.mobile-card-list {
    display: none;
}

@media (max-width: 768px) {
    .mobile-card-list {
        display: block;
    }
    
    .desktop-table {
        display: none;
    }
}

.mobile-list-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light);
}

.mobile-list-item:active {
    background: var(--light);
}

.mobile-list-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.mobile-list-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
}

.mobile-list-subtitle {
    font-size: 13px;
    color: var(--gray);
    margin-top: 2px;
}

.mobile-list-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 13px;
}

.mobile-list-label {
    color: var(--gray);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-list-value {
    color: var(--dark);
    font-weight: 500;
    margin-top: 2px;
}

.mobile-list-footer {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--light);
}

.mobile-list-footer .btn {
    flex: 1;
    min-height: 40px;
    padding: 8px 12px;
    font-size: 13px;
}

/* =====================================================
   Mobile Dashboard - Native App Style
   ===================================================== */
.mobile-dashboard {
    display: none;
}

@media (max-width: 768px) {
    .mobile-dashboard {
        display: none;  /* Hide mobile dashboard, use desktop layout */
        margin-bottom: 8px;
    }
    
    /* Stats Grid - 4 columns */
    .mobile-stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .mobile-stat-item {
        background: white;
        border-radius: 10px;
        padding: 10px 6px;
        text-align: center;
        box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    }
    
    .mobile-stat-item .stat-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 6px;
    }
    
    .mobile-stat-item .stat-icon [data-lucide] {
        width: 16px;
        height: 16px;
        stroke: currentColor;
    }
    
    .mobile-stat-item .stat-icon.primary { background: rgba(79, 70, 229, 0.12); color: var(--primary); }
    .mobile-stat-item .stat-icon.warning { background: rgba(245, 158, 11, 0.12); color: #D97706; }
    .mobile-stat-item .stat-icon.info { background: rgba(14, 165, 233, 0.12); color: #0284C7; }
    .mobile-stat-item .stat-icon.success { background: rgba(16, 185, 129, 0.12); color: #059669; }
    
    .mobile-stat-item .stat-value {
        font-size: 18px;
        font-weight: 700;
        color: var(--dark);
        line-height: 1;
    }
    
    .mobile-stat-item .stat-label {
        font-size: 9px;
        color: #888;
        margin-top: 2px;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }
    
    /* Menu Label */
    .mobile-menu-label {
        font-size: 11px;
        font-weight: 600;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
        padding-left: 2px;
    }
    
    /* Menu Grid - 4 columns */
    .mobile-menu-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .mobile-menu-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 12px 4px 10px;
        background: white;
        border-radius: 10px;
        text-decoration: none;
        box-shadow: 0 1px 3px rgba(0,0,0,0.06);
        position: relative;
    }
    
    .mobile-menu-item:active {
        transform: scale(0.96);
        background: #F8F8F8;
    }
    
    .mobile-menu-item .menu-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 6px;
    }
    
    .mobile-menu-item .menu-icon [data-lucide] {
        width: 20px;
        height: 20px;
        stroke: currentColor;
    }
    
    .mobile-menu-item .menu-icon.primary { background: linear-gradient(135deg, #6366F1, #4F46E5); color: white; }
    .mobile-menu-item .menu-icon.info { background: linear-gradient(135deg, #38BDF8, #0EA5E9); color: white; }
    .mobile-menu-item .menu-icon.warning { background: linear-gradient(135deg, #FBBF24, #F59E0B); color: white; }
    .mobile-menu-item .menu-icon.success { background: linear-gradient(135deg, #34D399, #10B981); color: white; }
    .mobile-menu-item .menu-icon.danger { background: linear-gradient(135deg, #F87171, #EF4444); color: white; }
    .mobile-menu-item .menu-icon.dark { background: linear-gradient(135deg, #64748B, #475569); color: white; }
    
    .mobile-menu-item span {
        font-size: 10px;
        font-weight: 500;
        color: #444;
        text-align: center;
    }
    
    .mobile-menu-item .menu-badge {
        position: absolute;
        top: 6px;
        right: 6px;
        min-width: 16px;
        height: 16px;
        background: #EF4444;
        color: white;
        font-size: 9px;
        font-weight: 700;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 4px;
    }
}

/* =====================================================
   Mobile Activity List
   ===================================================== */
@media (max-width: 768px) {
    .activity-item {
        padding: 12px 0;
    }
    
    .activity-item .user-avatar {
        width: 36px !important;
        height: 36px !important;
        font-size: 12px !important;
    }
    
    .activity-content p {
        font-size: 13px;
    }
    
    .activity-content small {
        font-size: 11px;
    }
}

/* Mobile Paket styles moved to mobile.css */

/* =====================================================
   Pull to Refresh Visual
   ===================================================== */
.pull-indicator {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 50%;
    transform: translateX(-50%) translateY(-100%);
    background: var(--white);
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    z-index: 99;
    transition: transform 0.3s;
}

.pull-indicator.visible {
    transform: translateX(-50%) translateY(10px);
}

.pull-indicator .spinner {
    width: 20px;
    height: 20px;
    border-width: 2px;
}

/* =====================================================
   Footer Mobile
   ===================================================== */
@media (max-width: 768px) {
    .main-footer {
        padding-bottom: 80px !important;
    }
}

/* =====================================================
   Overlay for mobile
   ===================================================== */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.sidebar-overlay.active {
    display: block;
}

/* =====================================================
   Scrollbar
   ===================================================== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray);
}

/* =====================================================
   Print Styles
   ===================================================== */
@media print {
    .sidebar,
    .top-header,
    .btn,
    .no-print {
        display: none !important;
    }
    
    .main-content {
        margin: 0 !important;
    }
    
    .content-area {
        padding: 0 !important;
    }
}
