﻿ .university-table {
            width: 100%;
            border-collapse: collapse;
            font-family: 'Segoe UI', sans-serif;
            margin: 20px 0;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

            .university-table th {
                background: linear-gradient(135deg, #b8d8ff, #d6f0ff);
                color: #1f2d3d;
                padding: 16px;
                font-size: 16px;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                border: 1px solid #dce6f0;
            }

            .university-table td {
                padding: 14px 16px;
                border: 1px solid #e4e4e4;
                font-size: 15px;
                font-weight: 600;
                color: #2c3e50;
                transition: 0.3s ease;
            }

            .university-table tr:nth-child(odd) td {
                background: #fff7f2;
            }

            .university-table tr:nth-child(even) td {
                background: #eef7ff;
            }

            .university-table tr:hover td {
                background: #e8f8ec;
            }

        .serial-no {
            width: 70px;
            text-align: center;
            font-weight: bold;
            color: #ff6b6b;
            background: #fff3cd !important;
        }

        .university-name::before {
            content: "🎓 ";
            margin-right: 4px;
        }

        @media (max-width:768px) {
            .university-table

        {
            font-size: 14px;
        }

        .university-table th,
        .university-table td {
            padding: 12px;
        }

        }