body {
    background-color: #000000;
    font-family: 'Helvetica', 'Arial', sans-serif;
    color: #ffffff;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start; /* Align thumbnails to the start */
    gap: 10px; /* Space between thumbnails */
}

.thumb-container {
    position: relative;
    border: 3px solid #f841b5; /* Updated border color */
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease; /* Smooth transition for zoom effect */
}

.thumb-container:hover {
    transform: scale(1.05); /* Zoom effect */
}

.thumb-container img {
    width: 220px;
    height: 150px;
    object-fit: cover;
    object-position: center;
}

.user-details-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 2px;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
}

/* Initially, the indicator might be invisible due to opacity: 0; */
.online-indicator {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #05b0fa; /* Updated indicator color */
    color: white;
    font-size: 12px;
    padding: 2px 5px;
    border-radius: 4px;
    opacity: 0; /* Start invisible for the fade-in effect */
    animation: fadeIn 2s ease forwards; /* Fade-in effect over 2 seconds */
}

/* Fade-in animation keyframes */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.thumb-container:hover .online-indicator {
    opacity: 1; /* Fade in effect */
}

/* Pagination Styles */
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.pagination a {
    padding: 8px 16px;
    margin: 4px;
    text-decoration: none;
    background-color: #f0f0f0;
    color: #333;
    border-radius: 4px;
}

.pagination a:hover {
    background-color: #f841b5; /* Updated hover background color */
}

@keyframes scrollTicker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.user-details-ticker div {
    display: inline-block;
    animation: scrollTicker 40s linear infinite; /* Slower ticker speed */
}

/* Navigation menu styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #1a1a1a;
    color: #fff;
    width: 100%; /* Ensure the navbar takes up the full width */
}

.navbar > div, .nav-links, .search-container {
    display: flex;
    align-items: center;
}

.logo {
    margin-right: 20px; /* Add some space between the logo and the nav links */
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    padding: 5px 10px;
    margin-left: 10px; /* Adds spacing between links */
    border-radius: 5px;
}

.nav-links a:hover {
    background-color: #f841b5; /* Updated hover background color */
}

.search-container {
    display: flex;
    align-items: center;
}

.search-container input[type="text"] {
    padding: 5px;
    margin-right: 10px;
    border-radius: 5px;
    border: none;
}

.search-container input[type="submit"] {
    padding: 5px 10px;
    background-color: #05b0fa; /* Updated background color */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.search-container input[type="submit"]:hover {
    background-color: #038ecb; /* Darker shade for hover effect */
}

.div-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Adjust based on your thumbnail size */
    gap: 10px; /* Space between items */
    justify-content: center; /* Horizontally center the grid items */
}

.thumbnails-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center items horizontally */
    gap: 10px; /* Space between items */
}

.site-footer {
    width: 100%;
    padding: 20px;
    background-color: #1a1a1a; /* Light grey background, adjust as needed */
    text-align: center;
    border-top: 1px solid #e1e1e1; /* Light grey border for a bit of separation */
    margin-top: 20px; /* Ensures there's space between the content and the footer */
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
}

/* Additional styling for footer content */
.site-footer p {
    margin: 0;
    padding: 0;
    color: #333; /* Darker text color for contrast */
}





