




/* body secction start */
#bba-root {
  font-family: Poppins, sans-serif;
  background: #f4f6fb;
}

/* HERO */
#bba-hero {
  background: linear-gradient(135deg, #dbeafe, #eef2ff);
  padding: 50px;
}

.bba-hero-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.bba-hero-image img {
  width: 360px;
  border-radius: 16px;
}

/* LAYOUT */
#bba-layout {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 40px auto;
  padding-top: 140px;
}

/* SIDEBAR */
#bba-sidebar {
  width: 260px;
}

#bba-sidebar button {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: none;
  background: #fff;
  cursor: pointer;
  border-radius: 10px;
  font-weight: 600;
}

/* CONTENT */
.bba-card {
  background: #fff;
  padding: 25px;
  width: 900px;
  margin-bottom: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  border-left: 6px solid #2563eb;
}

/* FACULTY */
#bba-faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.bba-faculty-card {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .1);
}

.bba-faculty-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 auto 10px;
}

/* MODAL */
#bba-modal {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(0, 0, 0, .7);
  justify-content: center;
  align-items: center;
}

#bba-modal-box {
  margin-top: 160px;
  background: #fff;
  padding: 30px;
  width: auto;
  height: auto;
  max-width: 90vw;
  border-radius: 14px;
}

#modal-img {
  width: 150px;
  max-width: 300px;
  height: 100%;
  border-radius: 10px;
  margin: 0 auto 10px;
  display: block;
}

#bba-close {
  float: right;
  cursor: pointer;
  font-size: 22px;
}





/* ===============================
   BBA COURSE STRUCTURE STYLING
================================= */

.bba-course-structure {
  margin: 40px auto;
  padding: 25px;
  background: #f8fafc;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Titles */
.bba-course-structure .bba-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.bba-course-structure .bba-title span {
  color: #0284c7;
}

.bba-course-structure .bba-subtitle {
  text-align: center;
  font-size: 18px;
  color: #475569;
  margin-bottom: 25px;
}

/* Table wrapper */
.bba-table-wrapper {
  overflow-x: auto;
  margin-top: 15px;
}

/* Main Table */
.bba-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  font-size: 15px;
}

/* Table Head */
.bba-table thead {
  background: linear-gradient(135deg, #0284c7, #0369a1);
  color: #ffffff;
}

.bba-table thead th {
  padding: 14px 10px;
  text-align: center;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Semester Header */
.bba-table .sem-header {
  font-size: 16px;
  background: #0f172a;
}

/* Table Body */
.bba-table tbody td {
  padding: 12px 10px;
  border: 1px solid #e2e8f0;
  text-align: center;
  color: #1e293b;
}

/* Zebra rows */
.bba-table tbody tr:nth-child(even) {
  background: #f1f5f9;
}

/* Hover effect */
.bba-table tbody tr:hover {
  background: #e0f2fe;
  transition: background 0.3s ease;
}

/* Marathi Note */
.bba-note {
  margin-top: 15px;
  font-size: 14px;
  color: #334155;
  font-style: italic;
  background: #e0f2fe;
  padding: 12px 15px;
  border-left: 5px solid #0284c7;
  border-radius: 6px;
}

/* ===============================
   TY BBA TABLE STYLING
================================= */

.body {
  margin-top: 50px;
}

.course-title {
  text-align: center;
  font-size: 28px;
  color: #1e293b;
  margin-bottom: 30px;
  font-weight: 700;
}

.table-container {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Semester Boxes */
.semester-box {
  flex: 1 1 480px;
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Semester Titles */
.semester-title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 15px;
  color: #0369a1;
  font-weight: 600;
}

/* TY Tables */
.course-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.course-table thead {
  background: #0f172a;
  color: #ffffff;
}

.course-table th,
.course-table td {
  padding: 12px;
  text-align: center;
  border: 1px solid #e5e7eb;
}

.course-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.course-table tbody tr:hover {
  background: #e0f2fe;
}



/* body section end */




