body {
    background-color: #333;
    font-family: Arial, sans-serif;
    color: white;
    margin: 0;
    padding: 0;
}

.user-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.user-box {
    width: 220px;
    height: 150px;
    margin: 10px;
    position: relative;
    overflow: hidden;
}

.thumbnail-container img {
    width: 220px;
    height: 150px;
    object-fit: cover;
    display: block;
}

.user-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
    padding: 5px;
    font-size: 12px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.on-line-now {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: green;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 10px; /* Set the font size to 10 pixels */
    z-index: 1;
}

a {
    color: white;
    text-decoration: none;
}

a:hover, a:visited {
    color: red;
    text-decoration: underline;
}

.pagination a {
    display: inline-block;
    text-decoration: none;
    color: white; /* Text color inside the pagination links */
    background-color: #ff9800; /* Circle background color */
    padding: 10px; /* Adjust the circle size by changing padding */
    margin: 5px; /* Space between circles */
    width: 40px; /* Set the width of the circle */
    height: 40px; /* Set the height of the circle */
    border-radius: 50%; /* Makes the shape a circle */
    box-sizing: border-box; /* Includes padding in the width and height calculations */
    transition: background-color 0.3s; /* Smooth transition for the background color change */
}

.pagination a:hover {
    background-color: #008000; /* Change to a green on hover */
}

.pagination a.current {
    font-weight: bold;
    background-color: #008000; /* Differentiate the current page */
}
/* General Navbar Styling */
.navbar {
    display: flex;
    justify-content: center; /* Center align items */
    align-items: center;
    background-color: #000; /* Default bar color to black */
    padding: 10px;
    width: 100%;
}

.navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar li {
    margin: 0 10px;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    transition: background-color 0.3s ease;
    font-size: 16px; /* Set font size to 16 pixels */
}

.navbar a:hover {
    background-color: #ff9800; /* Dark red on hover */
}

/* Search Box Styling */
.navbar form {
    display: flex;
    align-items: center;
}

.navbar input[type="text"] {
    padding: 5px;
    margin-right: 5px;
    border: 1px solid #333; /* Slightly visible border */
    border-radius: 5px;
    outline: none;
    color: #333;
    background-color: #fff; /* White background for input */
    font-size: 16px; /* Ensure input text is also 16 pixels */
}

.navbar button {
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    background-color: #555; /* Default button color */
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px; /* Button text to 16 pixels */
}

.navbar button:hover {
    background-color: #8B0000; /* Dark red on hover for button */
}

/* Smooth Transition for Input Focus */
.navbar input[type="text"]:focus {
    box-shadow: 0 0 5px rgba(139, 0, 0, 0.5); /* Dark red glow */
    border: 1px solid #8B0000; /* Dark red border */
}




