
        .scholarship-table {
            width: 80%;
            margin: 50px auto;
            border-collapse: collapse;
            background-color: #fff;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            overflow: hidden;
        }
        .scholarship-table th, .scholarship-table td {
            padding: 20px;
            text-align: center;
            font-size: 1.1em;
        }
        .scholarship-table th {
            background-color: #ff7f50;
            color: white;
            font-size: 1.3em;
        }
        .scholarship-table td {
            background-color: #f9f9f9;
        }
        .scholarship-table tr:nth-child(even) td {
            background-color: #f0f8ff;
        }
        .scholarship-table tr:nth-child(odd) td {
            background-color: #ffebcd;
        }
        .scholarship-table caption {
            font-size: 1.6em;
            font-weight: bold;
            color: #2f4f4f;
            margin-bottom: 20px;
        }
        .scholarship-table tr:hover {
            background-color: #e0ffff;
        }