/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #050505;
    color: #ffffff;
}

/* Main Content Area */
/* This works with the sidebar width defined in navbar.css */
.main-content {
    margin-left: 260px;
    padding: 50px;
    transition: margin-left 0.3s ease;
}

/* Welcome Header */
.welcome-section h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.welcome-section h1 span {
    color: #00d4ff;
}

.welcome-section p {
    color: #888;
}

/* Dashboard Cards Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.card {
    background: #0f0f0f;
    padding: 30px;
    border: 1px solid #1a1a1a;
    transition: border 0.3s ease;
    border-radius: 8px; /* Added slightly rounded corners for modern look */
}

/* Hover Effect (Only highlights border when mouse is over) */
.card:hover {
    border: 1px solid #007bff;
}

.card h3 {
    color: #00d4ff;
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.highlight {
    color: #00d4ff;
    font-weight: bold;
}

/* Buttons */
.btn-primary {
    background: #007bff;
    color: #fff;
    border: none;
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s;
    border-radius: 5px;
}

.btn-primary:hover {
    background: #00d4ff;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .main-content {
        margin-left: 0; /* Content takes full width on mobile */
        margin-top: 60px; /* Space for the mobile header */
        padding: 30px 20px;
    }
}