body {
    font-family: Arial, sans-serif;
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.profile-card {
    background-color: #2b2b2b;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.profile-header {
    background-color: #0d5eaf;
    padding: 15px;
    border-radius: 10px 10px 0 0;
    text-align: center;
}

.profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.profile-details {
    text-align: center;
}

.profile-icons {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.icon {
    font-size: 20px;
}

.profile-options, .other-profiles ul {
    list-style: none;
    padding: 0;
    margin: 15px;
}

.profile-options li, .other-profiles ul li {
    padding: 10px;
    border-bottom: 1px solid #444;
    cursor: pointer;
}

.profile-options li:hover, .other-profiles ul li:hover {
    background-color: #444;
}

.other-profiles {
    padding: 0 15px 15px;
}

h4 {
    margin: 10px 0;
}

a {
    color: #fff;
    text-decoration: none;
}

a:visited {
    color: #fff;
    text-decoration: none;
}
