﻿body {
    background: #f8f9fa;
}

.profile-sidebar {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.profile-header {
    padding: 30px;
    text-align: center;
    background: linear-gradient(135deg,#5d8f3f,#82b75b);
    color: white;
}

.member-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(0,0,0,.2);
}
    .member-avatar:hover {
        transform: scale(1.05);
    }

.profile-menu a {
    display: block;
    padding: 16px 25px;
    text-decoration: none;
    color: #333;
    transition: .25s;
    font-weight: 500;
}

    .profile-menu a:hover {
        background: #5d8f3f;
        color: white;
    }

.profile-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

    .profile-card .card-body {
        padding: 35px;
    }

.form-control {
    border-radius: 12px;
    padding: 10px 15px;
}

.btn-save {
    background: #5d8f3f;
    color: white;
    border-radius: 10px;
    padding: 10px 25px;
}

    .btn-save:hover {
        background: #4d7834;
        color: white;
    }
