.profile-container{
    width: 90%;
    margin: 60px auto;
    padding: 20px;
    background-color: white;
    border: 2px solid #4A90E2;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.profile-banner {
    background: #4A90E2;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}
.profile-banner h1 {
    margin: 0;
    font-size: 28px;
}
.profile-banner .username {
    font-size: 16px;
    opacity: 0.8;
}
.profile-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.profile-picture img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.profile-details {
    margin-left: 20px;
}
.profile-details p {
    margin: 10px 0;
    font-size: 16px;
    color: #333;
}
.profile-details i {
    color: #4A90E2;
    margin-right: 10px;
}
.profile-posts {
    margin-top: 20px;
    padding: 15px;
}
.profile-posts h3 {
    color: #4A90E2;
    margin-bottom: 10px;
}
.profile-posts ul {
    list-style-type: none;
    padding: 0;
}
.profile-posts ul li {
    background-color: #f9f9f9;
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}
