    /* Table background */
    table {
        background-color: #007BFF; /* blue background */
    }

    /* Table header */
    table thead th {
        background-color: #c19100; /* yellow background */
        color: #fff; /* white text */
        text-align: center;

    }

    .gray-box{
          background: #f0f0f0;
        border-radius: 10px;
        padding: 15px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        margin-bottom: 20px;
    }


    .tg-heading{
        color:white
    }
    
    /* Alternate row colors */
    .table tbody tr:nth-child(odd) {
        background-color: #ffffff; /* white */
    }

    .table tbody tr:nth-child(even) {
        background-color: #f2f2f2; /* light gray */
    }

    /* Ensure text stays readable */
    .table td, .table th {
        vertical-align: middle;
    }

    a{
        text-decoration: none;
    }


    thead th{
        color:white
    }

        /* Degree List */
    .degree-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .degree-list li {
        margin-bottom: 12px;
    }

    .degree-list li a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-decoration: none;
        color: #333;
        font-weight: 500;
        background: #f7f9fc;
        padding: 10px 15px;
        border-radius: 8px;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

    .degree-list li a:hover {
        background-color: #003366;
        color: #fff;
        transform: translateX(5px);
        border-color: #001f3f;
    }

    .degree-list li a:hover i {
        color: #c19100;
    }

    .degree-list i {
        color: #003366;
        font-size: 15px;
    }

    /* Badge */
    .degree-badge {
        background-color: #c19100;
        color: #003366;
        font-size: 12px;
        font-weight: 600;
        padding: 4px 8px;
        border-radius: 6px;
        text-transform: uppercase;
    }

    /* Hover badge contrast */
    .degree-list li a:hover .degree-badge {
        background-color: #fff;
        color: #003366;
    }

    @media (max-width: 768px) {
        .degree-list li a {
            font-size: 14px;
            padding: 8px 12px;
        }
    }


      .custom-list-style { padding-left: 0px; margin-top: 10px; list-style: none; }
    .custom-list-style .fa-fw { margin-right: 10px; }

    .blue-box {
        background: #001f3f;
        border-radius: 10px;
        padding: 20px;
        color: #ffffff;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        margin-bottom: 20px;
    }
    .blue-box h3 { color:#c19100; }
    .blue-box p { color: white; }

    .yellow-box {
        background: #ffeb3b;
        border-radius: 10px;
        padding: 20px;
        color: #000000;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        margin-bottom: 20px;
    }

    .gray-box {
        background: #f0f0f0;
        border-radius: 10px;
        padding: 15px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        margin-bottom: 20px;
    }

    h2, h3 { margin-top: 0; }
    .overview-para p { text-align: justify!important; margin: 0!important; color:white!important; }

    table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 10px;
    }
    th, td {
        padding: 10px;
        border: 1px solid #ccc;
        text-align: left;
    }
    th {
        background-color: #003366;
        color: #fff;
    }
    .no-course { text-align: center; color: #000; padding: 15px; }

    a { display: block; color: #003366; text-decoration: none; margin: 5px 0; }
    a:hover { text-decoration: underline; }

    /* Padding top and bottom */
    .page-content { padding: 40px 0; }

     /* Sidebar Card */
    .sidebar-card {
        background: #f0f0f0;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        padding: 25px;
        margin-bottom: 25px;
        transition: all 0.3s ease;
    }

    .sidebar-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.12);
    }

    /* Title */
    .sidebar-title {
        font-size: 20px;
        font-weight: 600;
        color: #092a4b;
        border-bottom: 2px solid #092a4b;
        padding-bottom: 8px;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

    /* List */
    .sidebar-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .sidebar-list li {
        margin-bottom: 10px;
    }

    .sidebar-list li a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: #333;
        font-weight: 500;
        padding: 8px 10px;
        border-radius: 6px;
        transition: all 0.3s ease;
    }

    .sidebar-list li a:hover {
        background-color: #f0f4ff;
        color: #092a4b;
        padding-left: 15px;
    }

    .sidebar-list i {
        color: #092a4b;
        font-size: 14px;
    }

    .no-items {
        font-size: 14px;
        color: #777;
        font-style: italic;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .sidebar-card {
            padding: 20px;
        }
        .sidebar-title {
            font-size: 18px;
        }
    }