@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');

body {
    font-family: "Poppins", sans-serif;
    background-color: #f8f9fa;
   
}

.h3, h3 {
    font-family: "Poppins", sans-serif;
    font-size: calc(1.3rem + .6vw);
    font-weight: 500;
    color: #6D3F36;
}

.container {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 20px;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap; /* Ensures wrapping on smaller screens */
    width: 100%;
    max-width: 1200px;
}

.tabs {
    flex: 1;
    margin-right: 20px;
}

.tab-content-wrapper {
    flex: 3;
}

.list-group-item.active {
    background-color: #E1CC9F;
    color: #6D3F36;
   
}

.list-group-item {
    display: block;
    padding: 12px 20px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    text-decoration: none;
    border-radius: 5px;
    color: #6D3F36;
}

.a {
    color: #3e7ad4;
}
.list-item-number {
    color: black;
}

.list-item-link {
    color: #3e7ad4;
    text-decoration: none;
    transition: text-decoration 0.3s ease; /* Optional: smooth transition for underline */
}

.list-item-link:hover {
    text-decoration: underline;
}


.tab-content {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 20px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane strong {
    color: #6D3F36;
}

.tab-pane p {
    text-align: justify;
    line-height: 1.6;
}

.tab-pane ul,
.tab-pane ol {
    padding-left: 20px;
}

.tab-pane li {
    margin-bottom: 5px;
}

.tab-pane img {
    max-width: 100%;
    height: auto;
    margin-right: 20px;
}

.tab-pane table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.tab-pane table td {
    padding: 10px;
    border: 1px solid #ccc;
}

.tab-pane table .wp-caption-text {
    margin-top: 10px;
    font-size: 12px;
    color: #666;
}

li::marker {
    color: black;
}

li a {
    color: #0A58CA;
    text-decoration: none;
}

li a:hover {
    text-decoration: underline;
}

.table-container {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 20px 0;
    overflow-x: auto; /* Ensures tables are scrollable on small screens */
}

.table {
    width: 100%;
    max-width: 800px;
    border-collapse: collapse;
}

.table th, .table td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
    color: #6D3F36;
}

.table td {
    word-wrap: break-word;
}

.row-even {
    background-color: #fcfcfc;
}

/* Specific selector for the "Link to Video" column */
.table td:nth-child(3) a {
    color: #3e7ad4;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.table td:nth-child(3) a:hover {
    text-decoration: underline;
}

/* Add this to your IQAC.css file */

/* Target all a tags within the table */
.table a {
    color: #3e7ad4; /* Initial link color */
    text-decoration: none; /* Remove underline */
  }
  
  /* Add hover effect */
  .table a:hover {
    
    text-decoration: underline; /* Add underline on hover */
  }
  

.aligncenter {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: 100%;
    border-collapse: collapse;
    border: 1px solid #000000;
  }
  
  .aligncenter td {
    border: 1px solid #000000;
    text-align: center;
  }
  
  .table-header {
    color: #993300;
    font-size: 10pt;
  }
  

/* Media Queries for Responsiveness */
@media (max-width: 767px) {
    .container {
        padding: 10px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .tabs {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .tab-content-wrapper {
        flex: 1;
    }

    .h3, h3 {
        font-size: calc(1.1rem + .5vw);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .container {
        padding: 20px;
    }

    .tabs {
        margin-right: 15px;
    }

    .tab-content-wrapper {
        flex: 2;
    }

    .h3, h3 {
        font-size: calc(1.2rem + .55vw);
    }
}
/*heading*/
h5 {
    color: #6D3F36;

}