      
        /* Global Styles */
            body {
                font-family: 'Arial', sans-serif;
                line-height: 1.6;
                background-color: #f4f4f4;
                margin: 0;
                padding: 0;
            }
            
                /* Hero Section Styling */
            .welcome {
                padding: 130px 0 5px 0;
                margin: 0;
                text-align: center;
            }
            
            @media (max-width: 768px) {
                .welcome {
                    padding: 10px 0 5px 0;
                }
            }
            
            
            /* Grid layout */
            .grid-container {
                display: grid;
                grid-template-columns: repeat(3, minmax(250px, 1fr));
                gap: 20px;
                width: 60%;
                margin: 0 auto;
                padding: 20px;
            }
            
            .grid-item {
                border-radius: 5px;
                border: 1px solid #ddd;
                padding: 20px;
                box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
                display: flex;
                align-items: center;
                position: relative;
                overflow: hidden;
                transition: transform 0.3s ease-in-out;
                height: auto;
            }
            
            .grid-item a {
                text-decoration: none;
                display: flex;
                align-items: center;
                color: inherit;
            }
            
            .img-h4 {
                margin-bottom: 160px;
                
            }
            
            .grid-item img {
                width: 50px;
                height: 50px;
                margin-top: 10px;
                border-radius: 50%;
                position: absolute;
                top: 3px;
                left: 10px;
                
            }
            
            .grid-item h4 {
                margin-top: 10px;;
                font-size: 1.2em;
                margin-left: 30px;
                text-align: center;
                color: green;  /* Add green color */
                position: absolute;
                top: 8%;
                left: 15%;
            }
            
            .grid-item:hover {
                transform: translateY(-5px);
            }
            
            
            .text-content {
                text-align: center;
                width: 100%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                height: 100%;
                position: absolute;
                top: 10px;
                left: 0;
                padding: 0;
                margin-top: 15px;
            }
            
            
            .text-content p {
                margin: 5px 0;  /* reduces the default margin */
                padding: 0;
                word-wrap: break-word; /* Ensures text wraps properly */
            }
            
            
            /* Add ONLY these lines to your existing CSS - nothing else needs to change */
.grid-item {
    width: 100%; /* Ensures card doesn't grow beyond container */
    box-sizing: border-box; /* Includes padding in width calculation */
}

.text-content {
    width: 100%; /* Constrains content to card width */
}

.text-content p {
    overflow-wrap: anywhere; /* Force wrapping of long words */
    word-break: break-word; /* Break unbreakable words */
    hyphens: auto; /* Add hyphenation where needed (optional) */
    margin: 5px 0; /* Keep your original margin */
}
            
            
            /* Responsive Grid Layout */
            @media (max-width: 1024px) {
                .grid-container {
                    grid-template-columns: repeat(2, minmax(250px, 1fr)); /* Two columns on tablets */
                    width: 80%;
                }
            
                .grid-item {
                    height: auto; /* Allow dynamic height */
                    padding: 15px;
                }
            
                .grid-item h4 {
                    font-size: 1em;
                    left: 18%;
                    top: 10%;
                }
            }
            
            @media (max-width: 768px) {
                .grid-container {
                    grid-template-columns: repeat(1, minmax(250px, 1fr)); /* Single column on mobile */
                    width: 90%;
                }
            
                .grid-item img {
                    width: 40px;
                    height: 40px;
                    top: 5px;
                }
            
                .grid-item h4 {
                    font-size: 1em;
                    left: 5%;
                }
            
                .text-content {
                    font-size: 0.9em;
                }
            }
            
            /* Mobile Specific Tweaks */
            @media (max-width: 480px) {
                .grid-container {
                    width: 91%;
                }
            
                .grid-item h4 {
                    font-size: 0.9em;
                    left: 10%;
                    top: 8%;
                }
            
                .grid-item img {
                    width: 35px;
                    height: 35px;
                }
            
                .text-content p {
                    font-size: 0.85em;
                }
            }
            
            
            .airdrop-type {
                position: absolute;
                top: 0;
                right: 0;
                background-color: #004080;
                color: #fff;
                padding: 5px 10px;
                border-top-right-radius: 5px;
                border-bottom-left-radius: 8px;
                font-size: 0.8em;
                font-weight: bold;
                text-transform: capitalize; /* Capitalizes the first letter */
            }
            
            /* Style for the "No results" message */
            .no-results {
                background-color: #f8d7da; /* Light red background for attention */
                color: #721c24; /* Dark red text */
                padding: 20px;
                border-radius: 5px;
                border: 1px solid #f5c6cb; /* Red border to match the background */
                text-align: center;
                font-size: 1.2em;
                margin: 0; /* Reset margin to handle centering */
                position: absolute;
                top: 50%; /* Vertically center the message */
                left: 50%; /* Horizontally center the message */
                transform: translate(-50%, -50%); /* Adjust position by half of its width/height */
                width: 80%;
                max-width: 600px; /* Max width to prevent it from becoming too wide */
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            }
            
            
            /* Make the message responsive for smaller screens */
            @media (max-width: 768px) {
                .no-results {
                    width: 90%; /* Increase width on smaller screens */
                    font-size: 1em; /* Adjust font size */
                }
            }
            
            @media (max-width: 480px) {
                .no-results {
                    width: 95%; /* Further increase width for mobile devices */
                    font-size: 0.9em; /* Adjust font size for smaller devices */
                }
            }
            
            .Active {
                color: green;
                font-weight: bold;
            }
            
            .Closed {
                color: red;
                font-weight: bold;
            }
            
            .Not\ Stated {
                color: black; /* Default text color */
            }

            #pagination {
                text-align: center;
                margin-top: 5px;
            }
            
            #pagination button {
                padding: 10px 15px;
                margin: 5px;
                border: none;
                cursor: pointer;
                background-color: #004080;
                color: white;
                border-radius: 5px;
                transition: background 0.3s;
            }
            
            #pagination button.active {
                font-weight: bold;
                background-color: #ff8c00;
            }
            
            #pagination button:disabled {
                background-color: #ccc;
                cursor: not-allowed;
            }
            
            #pagination button:hover:not(:disabled) {
                background-color: #002060;
            }
        