
body {
    background-color: #1a1a1a;
    color: #fff;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    text-transform: capitalize;
}

header {
    background-color: #FFD700;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header_title {
    color: #000;
    font-weight: 600;
    margin: 0;
    font-size: 32px;
    text-transform: capitalize;
}


.marquee {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    padding: 10px;
    margin: 20px 0;
}

.marquee img {
    height: 30px;
    margin-right: 15px;
}

marquee {
    font-size: 16px;
    color: #FFD700;
}


main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}


.table_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.heading {
    font-size: 28px;
    color: #FFD700;
    margin: 0;
}


.history {
    padding: 8px 16px;
    background-color: #FFD700;
    border: none;
    border-radius: 4px;
    color: #000;
    font-size: 16px;
    cursor: pointer;
}

.history:hover {
    background-color: #E0C500;
}


table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

th {
    background-color: #FFD700;
    color: #000;
    padding: 12px;
    text-align: left;
    font-size: 18px;
}

td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    
}

tr:nth-child(even) {
    background-color: #f3e309;
}

tr:hover {
    background-color: #FFD700;
    color: #000;
}
.text {
    text-align: center;
}
@media (max-width: 768px) {
    .table_top {
        flex-direction: column;
        align-items: flex-start;
    }

    .history {
        margin-top: 10px;
        width: 100%;
    }

    table {
        font-size: 14px;
    }

    th, td {
        padding: 8px;
    }
}