
body {
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}


header {
    background-color: #034ea2;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 150px;
    position: relative;
}



.header-title {
    font-family: 'Trebuchet MS', sans-serif;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    font-weight: bold;
    color: white;
    text-align: center;
    white-space: nowrap;
}


.sub-title {
    color: #034ea2;
    text-align: center;
    margin-top: 30px;
    padding: 15px 0;
    font-size: 34px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1, h2 {
    text-align: center;
    color: #034ea2;
}


.table-container {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: center;
    font-size: 18px;
}

table td {
    font-size: 17px;
}

table th {
    background-color: #034ea2;
    color: white;
    font-size: 24px;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;
}

table tr:hover {
    background-color: #ddd;
}

.senarai {
    font-size: 28px;
}

a {
    text-decoration: none;
    color: #034ea2;
    transition: color 0.3s ease;
}

a.head {
    color: white;
}

p {
    text-align: center;
    color: #777;
}


@media (max-width: 1100px) {
    header {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    header .logo img {
        height: 100px;
        width: 100px;
        margin: 0 auto;
    }

    .header-title {
        position: static;
        transform: none;
        font-size: 28px;
        margin-top: 10px;
    }

    .sub-title {
        font-size: 22px;
        padding: 10px 0;
    }

    .senarai {
        font-size: 23px;
    }

    .container {
        width: 95%;
        padding: 15px;
    }

    thead {
        font-size: 20px;
    }

    table td {
        font-size: 14px;
        padding: 8px;
    }

    table th {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .header-title {
        font-size: 24px;
    }

    .sub-title {
        font-size: 18px;
    }

    table th, table td {
        font-size: 12px;
        padding: 6px;
    }

    table th {
        font-size: 16px;
    }
}