.ranking-section {
  background: #f9f9f9;
  padding: 60px 0;
}

.ranking-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.ranking-title {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #2c3e50;
}

.ranking-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.ranking-card {
  flex: 1 1 300px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.ranking-logo {
  max-height: 160px;
  margin-bottom: 10px;
}

.ranking-heading {
  margin-bottom: 5px;
  color: #34495e;
}

.ranking-description {
  color: #7f8c8d;
}

/* .custom-tabs start */
.custom-tabs {
  margin-bottom: 20px;
}

.tab-buttons {
  display: flex;
  gap: 10px;
}

.tab-btn {
  background-color: #DEE6F0;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
    align-items: center;
    font-weight: 500;
    color: #1f2937;
    transition: ease-in-out 0.4s;
    cursor: pointer
}

.tab-btn:hover {
  background-color: #007BFF;
  color: #fff;
}

.tab-btn.active {
  background-color: #1e3a8a;
  color: #fff;
}

.tabpage-content {
  display: none;
}

.tabpage-content.active {
  display: block;
}

/*.faculty-cards start*/

.faculty-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.faculty-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f9f9f9;
  width: calc(33.333% - 10px); /* Now 3 cards per row */
  box-sizing: border-box;
}

.faculty-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.faculty-info h5 {
  margin: 0 0 5px;
  font-size: 16px;
}

.faculty-info p {
  margin: 2px 0;
  font-size: 14px;
  color: #555;
}

/* Optional: Make it 1 column on small screens */
@media (max-width: 768px) {
  .faculty-card {
    width: 100%;
  }
}

.error {
  color: red;
  font-size: 14px;
  margin-top: 4px;
}

.inputCtrl.error,
.custom-select.error {
  border-color: red !important;
}

.message-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.message-error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.swal2-container {
  z-index: 9999 !important;
}

/*.mobNav .subMenu {
  display: none;
  padding-left: 15px;
}
.mobNav .has-submenu.open .subMenu {
  display: block;
}*/


.customTableWrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.downloadTitle {
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.downloadDesc {
    font-size: 14px;
    color: #666;
}

.customTable {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    min-width: 600px;
}

.customTable thead {
    background: #f5f5f5;
}

.customTable th {
    text-align: left;
    padding: 12px 16px;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #ddd;
}

.customTable td {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    color: #555;
}

.customTable tr:hover {
    background: #fafafa;
}


.image-container {
    width: 100%;
    height: 400px; /* adjust height as per your layout */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f8f8; /* optional background */
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


.sidebarWidgetCustom {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.sidebarWidgetCustom h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.sidebarWidgetCustom .cmnBtn{
    font-size: 14px;
}
.quickLinksList {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.quickLinksList > li {
    margin-bottom: 8px;
    font-weight: 500;
}

.quickLinksList .quickLink {
    color: #0056b3;
    text-decoration: none;
    display: block;
    transition: color 0.2s ease;
}

.quickLinksList .quickLink:hover {
    color: #007bff;
}

.nestedProgramList {
    list-style: none;
    padding-left: 15px;
    margin-top: 5px;
}

.nestedProgramList li {
    margin: 3px 0;
    font-weight: 400;
}

.nestedProgramList .subLink {
    color: #444;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nestedProgramList .subLink:hover {
    color: #007bff;
    text-decoration: underline;
}

