.easter-egg-collection-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Spacing between cards */
    justify-content: center; /* Center cards horizontally */
    padding: 20px;
    width: 100%;
    max-width: 1200px; /* Maximum width of the container */
    margin: 0 auto; /* Center the container itself */
}

.easter-egg-card {
    background-color: #251202; /* White background for cards */
    border: 1px solid #ffd500; /* Light grey border */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    padding: 20px;
    width: calc(33.333% - 40px); /* Three cards per row, accounting for gap */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.easter-egg-card:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

.easter-egg-card img {
    width: 100%;
    height: auto;
    max-height: 180px; /* Limit image height */
    object-fit: cover; /* Ensure image covers the area well */
    border-radius: 6px; /* Rounded corners for images */
    margin-bottom: 15px;
    border: 2px solid #ffd700; /* Gold border for images */
}

.easter-egg-card h3 {
    font-size: 1.4em; /* Larger title font */
    color: #ff9d00; /* Dark grey for title */
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.3;
}

.easter-egg-card .egg-description {
    font-size: 0.95em; /* Slightly smaller description font */
    color: #adadad; /* Medium grey for description */
    line-height: 1.6;
    flex-grow: 1; /* Allow description to take available space */
    margin-bottom: 15px;
}

.easter-egg-card .egg-status {
    font-size: 0.85em;
    font-weight: bold;
    padding: 5px 0;
    margin-top: auto; /* Push status to the bottom if card heights vary */
    border-top: 1px solid #eee; /* Separator line */
    text-align: center;
}

.easter-egg-card .status-discovered {
    color: #2ecc71; /* Green for discovered */
}

.easter-egg-card .status-hidden {
    color: #e74c3c; /* Red for hidden/not found */
}

.easter-egg-card .status-new {
    color: #f39c12; /* Orange for new */
}

.easter-egg-card .egg-link {
    display: inline-block;
    background-color: #d18d04; /* Blue for link button */
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.easter-egg-card .egg-link:hover {
    background-color: #000000; /* Darker blue on hover */
}

/* Styles for Easter Egg Card Statuses */
.easter-egg-card .egg-status.status-found {
    color: green;
    font-weight: bold; /* Optional: makes the text bolder */
}

.easter-egg-card .egg-status.status-not-found {
    color: #cc0000; /* A shade of red */
    /* font-weight: bold; */ /* Optional */
}

/* Responsive adjustments for cards */
@media (max-width: 992px) { /* For tablets */
    .easter-egg-card {
        width: calc(50% - 30px); /* Two cards per row */
    }
}

@media (max-width: 600px) { /* For mobile phones */
    .easter-egg-card {
        width: calc(100% - 20px); /* One card per row */
        margin-left: 10px;
        margin-right: 10px;
    }
    .easter-egg-collection-container {
        padding: 10px 0; /* Adjust padding for mobile */
    }
}

/* Pagination Styles */
.pagination-container {
    text-align: center;
    margin-top: 30px;
    padding-bottom: 20px;
}

.pagination-button {
    background-color: #331f01;
    color: rgb(255, 255, 255);
    border: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pagination-button:hover:not(:disabled) {
    background-color: #d18d04;
}

.pagination-button:disabled {
    background-color: #333333;
    cursor: not-allowed;
}

.pagination-info {
    margin: 0 15px;
    font-size: 1em;
    color: #ffffff; /* White text for page info, assuming dark background */
}
