﻿/* Override CSS to fix big space at top */

/* Remove excessive top padding/margin from main content */
.main-content {
    padding-top: 0 !important;
}

/* Adjust content margin to reduce big space */
.content {
    padding: 0 !important;
    margin-top: 60px !important;
}

/* Fix dashboard container spacing */
.dashboard-container {
    margin-top: -60px !important;
    padding-top: 70px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    padding-bottom: 10px !important;
}

/* Remove extra margin from header section */
.header-section {
    margin-top: 0 !important;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .content {
        margin-top: 60px !important;
        padding: 0 !important;
    }
    
    .dashboard-container {
        margin-top: -50px !important;
        padding-top: 60px !important;
    }
}

@media (max-width: 480px) {
    .content {
        margin-top: 60px !important;
        padding: 0 !important;
    }
    
    .dashboard-container {
        margin-top: -40px !important;
        padding-top: 50px !important;
    }
}