.profile-card {
    background: #fff;
    width: 500px;
    display: flex;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.profile-left {
    width: 35%;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-left img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #fff;
}

.profile-right {
    width: 65%;
    padding: 25px;
}

.actions {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}