

/* General Page Styling */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f6f8;
}

/* Dashboard Container */
.dashboard-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding: 20px;
}

/* Header Section with Logo and Tagline */
.header {
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 20px;
}

.project-logo {
    max-width: 700px;
    margin-bottom: 10px;
}

.tagline h1 {
    font-size: 60px;
    color: rgb(5, 39, 48);
    margin: 0;
}

.tagline p {
    font-size: 40px;
    color: rgb(87, 191, 165);
    margin: 5px 0 0 0;
}

/* KPI Section */
.kpi-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Three columns */
    gap: 20px;
    justify-items: start;
}


.kpi {
    padding: 20px;
    background-color: rgb(240, 248, 245);
    border: 1px solid rgb(87, 191, 165);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kpi:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.kpi-title {
    font-size: 18px;
    color: rgb(5, 39, 48);
    margin-bottom: 5px;
}

.kpi-value {
    font-size: 30px;
    color: rgb(87, 191, 165);
    font-weight: bold;
}

/* Recent Products Table */
.recent-products {
    grid-column: 1 / 2;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.recent-products table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.recent-products th,
.recent-products td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.recent-products th {
    background-color: rgb(5, 39, 48);
    color: white;
    font-weight: bold;
}

/* Map Section */
.map-section {
    grid-column: 2 / 3;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 8px;
}
