body {
  font-family: "Poppins", sans-serif;
  background: #f4f7fa;
  margin: 0;
  padding: 0;
}


.search-input{
    width: 250px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}


.card form select,
.card form input{
    margin: 10px 10px 0px 0px;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    min-width: 180px;
}


.btn {
    padding: 10px 25px;
    background: #2d6cdf;
    text-decoration: none;
    border-radius: 5px;
    border: none;
    display: inline-block;
    cursor: pointer;
}

.actions {
    margin: 20px;
}

.btn-primary {
    display: inline-block;
    background: #2d6cdf;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
}

.btn-primary:hover {
    background: #1b4fb3;
}

.charts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin: 30px;
}

canvas {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


.dashboard-container {
    padding: 30px;
    background-color: #f9fafb;
    min-height: 100vh;
}

.dashboard-title {
    font-size: 28px;
    font-weight: bold;
    color: #222;
    text-align: center;
    margin-bottom: 30px;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.card h3 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 20px;
    color: #333;
}

.graph-container{
    height: 250px;
    width: 100%;
    margin-bottom: 20px;
}


table{
  width: 100%;
  border-collapse: collapse;
  background: white;
}

th, td{
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
}

th{
  background: #f0f0f0;
}


