  /* Global Styles */
        * {
            font-family: 'Signika', sans-serif;
            letter-spacing: 0.5px;
        }

        body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(to bottom right, #2b5876, #4e4376);
            color: white;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            padding: 20px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            flex-grow: 1;
        }

        .main-content {
            background-color: rgba(0, 0, 0, 0.7);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin-top: 20px;
            width: 100%;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        /* Header image */
        .header-image {
            width: 100%;
            max-height: 400px;
            object-fit: cover;
            border-radius: 15px;
        }

        /* Search Input Group Styling */
        .inputs .input-group {
            display: flex;
            justify-content: center;
            width: 100%;
            max-width: 400px;
            margin-bottom: 20px;
            position: relative;
        }

        .inputs input[type="text"] {
            padding: 12px 15px;
            font-size: 18px;
            border-radius: 8px 0 0 8px;
            border: 1px solid #ddd;
            outline: none;
            flex-grow: 1;
        }

        .inputs .input-group-append button {
            background-color: #007bff;
            color: white;
            border: none;
            padding: 20px 15px; 
            font-size: 18px;
            border-radius: 0 8px 8px 0; 
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            right: -59px;
            top: -8px;
            width: 50px;
            height: 100%; /* Ensures the button fills the height of the input */
        }

        /* Icon inside the button */
        .inputs .input-group-append button i {
            font-size: 20px; /* Adjust icon size */
            line-height: 0; /* Ensures the icon is aligned properly */
        }

        .inputs .input-group-append button:hover {
            background-color: #0056b3;
        }

        /* Table Styling */
        .div-list {
            margin-top: 20px;
            overflow-y: auto;
            max-height: 60vh;
        }

        .card-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 16px;
        }

        .card-table th, .card-table td {
            padding: 12px;
            text-align: center;
            border: 1px solid #ddd;
        }

        .card-table th {
            background-color: #4e4376;
            color: white;
        }

        .card-table tr:nth-child(even) {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .card-table td {
            color: #fff;
        }

        /* Footer */
        .footer {
            background-color: #333;
            color: #fff;
            padding: 20px;
            text-align: center;
            font-size: 16px;
            border-radius: 30px 30px 0 0;
            width: 100%;
            position: relative;
            bottom: 0;
            margin-top: 40px;
        }

        .footer p {
            margin: 0;
        }

        .footer a {
            color: #007bff;
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        /* Image styling under footer */
        .payment-images {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .payment-images a img {
            width: 100px;
            height: 60px;
            border-radius: 15px;
            transition: transform 0.3s ease-in-out;
        }

        .payment-images a img:hover {
            transform: scale(1.1);
        }

        /* Responsiveness for smaller screens */
        @media (max-width: 768px) {
            .main-content {
                padding: 20px;
                max-width: 100%;
            }

            .inputs input[type="text"], .inputs input[type="button"] {
                font-size: 16px;
                width: 80%;
            }

            .card-table th, .card-table td {
                padding: 10px;
                font-size: 14px;
            }

            .div-list {
                max-height: 50vh;
            }

            .payment-images a img {
                width: 80px;
                height: 50px;
            }
        }

        @media (max-width: 480px) {
            .inputs input[type="text"], .inputs input[type="button"] {
                font-size: 14px;
                width: 100%;
            }

            .card-table th, .card-table td {
                padding: 8px;
                font-size: 12px;
            }

            .inputs {
                flex-direction: column;
            }

            .payment-images a img {
                width: 70px;
                height: 45px;
            }
        }