       table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(14px);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0,0,0,0.3);
            font-family: 'Segoe UI', sans-serif;
        }
        th {
            background: linear-gradient(135deg, #6a11cb, #2575fc);
            color: white;
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 16px 20px;
        }
        td {
            padding: 16px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        }
        tr:last-child td {
            border-bottom: none;
        }
        tr {
            transition: all 0.3s ease;
        }
        tr:hover {
            background: rgba(255, 255, 255, 0.12);
        }
        .journal-name {
            font-weight: bold;
            font-size: 16px;
            background: linear-gradient(90deg, #ff8a00, #e52e71);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: all 0.3s ease;
        }
        .journal-name:hover {
            text-shadow: 0 0 8px rgba(255, 138, 0, 0.7);
            transform: scale(1.02);
        }
        a.button {
            text-decoration: none;
            background: linear-gradient(135deg, #ff512f, #dd2476);
            color: white;
            padding: 8px 14px;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
            display: inline-block;
        }
        a.button:hover {
            transform: scale(1.08);
            box-shadow: 0 4px 20px rgba(255, 81, 47, 0.5);
        }