/* General Styles */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
}

/* Student Card Styles */
.student-img {
  height: 200px;
  object-fit: cover;
}

.student-detail-img {
  max-height: 300px;
  object-fit: contain;
}

/* Dashboard Styles */
.dashboard-card {
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Table Styles */
.table th {
  background-color: #f8f9fa;
}

/* Form Styles */
.form-control:focus {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Print Styles */
@media print {
  .no-print {
    display: none !important;
  }

  body {
    background-color: white;
  }

  .card {
    border: none;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .student-img {
    height: 150px;
  }

  .student-detail-img {
    max-height: 200px;
  }
}
