     :root {
        --first-color: #000;
        --second-color: #fff;
        --third-color: #f000f8;
        --fourth-color: #490139;
      }

      body {
        background: url("/backgroundgc.jpg");
        /* background-color: var(--first-color); */
        color: var(--second-color);
        background-size: cover !important;
        background-attachment: fixed !important;
        background-position-x: center !important;
        background-position-y: center !important;
        font-family: 'arial';
        position: relative; /* Creates a stacking context for canvas */
      }
      
        canvas {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1; /* Keeps the canvas behind all content */
        pointer-events: none; /* Prevents interactions with the canvas */
      }

@keyframes futuristicGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Reset body and html default margins and paddings */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(90deg, #690052, #a10080, #cc00cc, #a10080, #690052); /* Purple futuristic gradient */
    background-size: 300% 300%; /* Expands the gradient for smooth animation */
    animation: futuristicGradient 6s infinite; /* Gradient animation */
    width: 100vw; /* Full viewport width */
    border-bottom: 2px solid #444;
    margin-top: 0px;
    box-sizing: border-box; /* Ensures padding and border are included in the width */
}

.header .logo {
    width: 200px; /* Adjust logo size */
    height: auto;
}

.header .buttons {
    display: flex;
    gap: 10px;
}

.header button {
    margin: 0;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #000000;
    border: 2px solid #ff00b3;
    cursor: pointer;
    transition: 0.3s;
}

.header button:hover {
    background-color: #ff00dd;
    border-color: #ff00dd;
}
.copyright {
    text-transform: uppercase;
    font-size: 0.7rem;
    text-align: center;
}

/* Mobile styles */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .header .logo {
        margin-bottom: 10px;
    }

    .header .buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 5px; /* Reduce gap between buttons */
        width: 100%; /* Ensure full width on mobile */
    }

    .header button {
        width: 40vh;
    }
    .copyright {
        font-size: 0.54rem;
        padding: 0.3rem 0;
    }
}

.container {
    text-align: center;
    z-index: 1; /* Ensures content is above the canvas */
    background: var(--first-color);
    border: 2px solid var(--third-color);
    display: block;
    margin: 20px auto;
    margin-top: 10px;
    padding: 20px;
    border-radius: 1rem;
    width: 100vh; /* Default width for larger screens */
}
@media (max-width: 768px) {
    .container {
        width: auto; /* Adjust width for smaller devices */
    }
}
@media (max-width: 1280px) {
    .container {
        width: auto; /* Adjust width for smaller devices */
    }
}


        .table-container {
            background-color: #111;
            padding-top: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
            color: #fff;
        }

        table th, table td {
            padding: 10px;
            border: 1px solid #444;
            text-align: center;
        }

        table th {
            background-color: #da00ab;
            font-weight: bold;
        }

        .red-button {
            color: #fff;
            background-color: #ff0000;
            padding: 5px 10px;
            border-radius: 5px;
            text-decoration: none;
            display: inline-block;
            transition: 0.3s;
        }

        .red-button:hover {
            background-color: #ff5555;
        }

        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .pagination button {
            padding: 5px 10px;
            background-color: #333;
            color: #fff;
            border: 1px solid #444;
            cursor: pointer;
        }

        .pagination button:hover {
            background-color: #ff00ea;
            color: #000;
        }
        .search-bar {
    margin-bottom: 20px;
    text-align: center;
}

.search-bar input {
    padding: 10px;
    width: 50%;
    border: 1px solid #444;
    border-radius: 5px;
    font-size: 16px;
}

.search-bar input:focus {
    outline: none;
    border-color: #ff00d4;
}