/* Add styles specific to desktop version here */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
}

.navbar .search-bar {
    flex-grow: 1;
    margin: 0 20px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 20px;
}

.navbar .upload-btn {
    padding: 5px 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

.homepage-content {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.homepage-content h1 {
    font-size: 32px;
}

.homepage-content p {
    font-size: 18px;
    color: #555;
}

.homepage-content .explore-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    margin-top: 20px;
}

.homepage-content .explore-btn:hover {
    background-color: #0056b3;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 40px; /* Adjust the height as needed */
    margin-right: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}
/* Profile List Styles */
.profile-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.profile-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.profile-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.profile-picture {
    height: 100px;
    width: 100px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.username {
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
}

.user-bio {
    padding: 10px;
    font-size: 14px;
    color: #666;
}