@charset "utf-8";
/* CSS Document */

/* styles.css */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

.dashboard-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #007bff;
    color: #fff;
    padding: 1rem 2rem;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.navbar .nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.navbar .nav-links a:hover {
    text-decoration: underline;
}

/* Header Section */
.header {
    text-align: center;
    padding: 2rem;
    background-color: #f1f3f5;
    border-bottom: 1px solid #dee2e6;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.header p {
    font-size: 1rem;
    color: #6c757d;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* KPI Cards */
.kpi-cards {
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
}

.kpi-cards .card {
    flex: 1;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.kpi-cards .card h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #007bff;
}

/* Recent Activities */
.recent-activity h2 {
    margin-bottom: 1rem;
}

.recent-activity table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.recent-activity table th, .recent-activity table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.recent-activity table th {
    background-color: #f1f3f5;
    font-weight: 700;
}

/* Footer */
.footer {
    text-align: center;
    padding: 1rem;
    background-color: #343a40;
    color: #fff;
}
