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 */
}

a {
    color: #05b0fa; /* Updated link color */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#profiles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#profiles-container a {
    margin: 10px;
    text-align: center;
    display: block;
}

#profiles-container a:hover img {
    transform: scale(1.1);
}

#profiles-container img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #f841b5; /* Updated border color for related profiles */
    margin-bottom: 5px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.user-info-container {
    display: flex;
    background-color: #333;
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    color: #fff;
    align-items: center;
    justify-content: center; /* Center the items horizontally inside the container */
    width: 100%; /* Ensure it takes full width to center correctly */
    box-sizing: border-box; /* Ensure padding does not affect the total width */
}

.user-photo {
    flex-shrink: 0; /* Prevent the photo from shrinking */
    margin-right: 20px; /* Spacing between photo and details */
}

.user-photo img, .user-photo .profile-photo {
    width: 400px;
    height: 225px;
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
}

.user-details {
    padding-left: 20px; /* Adjust if more spacing needed */
}

.user-details p, .user-details a {
    margin: 0 0 10px;
    text-align: left;
}

#main-container {
    background-color: #333;
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 10px;
    margin: 20px auto;
    max-width: 900px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

iframe {
    border-radius: 8px;
    width: 950px;
    height: 550px;
    border: none;
}

.join-chat-btn {
    display: inline-block;
    background-color: #05b0fa; /* Updated background color */
    color: white;
    padding: 10px 20px;
    margin-top: 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.join-chat-btn:hover {
    background-color: #038ecb; /* Darker shade for hover effect */
}



