/* General Container Styles */
.container-one {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Jumbotron Styling */
.jumbotron {
  background-color: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h5 {
  font-size: 1.25rem;
  color: #343a40;
  font-weight: bold;
}

.my-2 {
  height: 5px;
  width: 7%;
  background-color: #fb8c00;
}

/* Program Table Styling */
.program-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.program-table th,
.program-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
  color: #000000;
}

.program-table th {
  background-color: #f1f1f1;
  font-weight: bold;
  color: #333;
  font-size: 1.5rem;
}

.program-table td {
  background-color: #ffffff;
}
.program-table td a {
  color: #000000;
  font-size: 1.2rem;
  font-weight: bold;
}
/* Program Links Styling */
.program-links {
  margin-bottom: 10px;
}

.program-links .d-block {
  font-size: 1.5rem;
  color: #000000;
  text-decoration: none;
}

/* Year Range Styling */
.vertical-years {
  display: inline-block;
  color: #555;
  font-size: 1.2rem;
  margin-top: 5px;
  padding: 2px 8px;
  background-color: #f8f9fa;
  border-radius: 5px;
  font-weight: bold;
  border: 1px solid #ddd;
}

.vertical-years::before {
  content: attr(data-start-year) attr(data-end-year);
}

/* Divider Styling */
.divider {
  height: 1px;
  background-color: #ddd;
  margin: 8px 0;
}

/* Typography Styling for Headings */
h6 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #78335d;
  margin-top: 30px;
}
.text-primary .h6 {
  color: #78335d;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .program-table th,
  .program-table td {
    font-size: 1.5rem;
    padding: 8px;
  }

  .program-links .d-block {
    font-size: 0.875rem;
  }

  h5 {
    font-size: 1.4rem;
  }
  .program-links .d-block {
    font-size: 1.4rem;
  }

  h6 {
    font-size: 1.5rem;
  }

  .my-2 {
    width: 10%;
  }
}

/* Link Styling */
a {
  text-decoration: none;
  color: #007bff;
}

a:hover {
  text-decoration: underline;
}
