/* Layout */
.lions-ledger-profile-container {
display: flex;
font-family: ‘Segoe UI’, sans-serif;
background-color: #fdfaf6;
padding: 30px;
}
.lions-sidebar {
width: 280px;
background-color: #fff;
border-radius: 12px;
padding: 25px;
margin-right: 30px;
box-shadow: 0 2px 10px rgba(0,0,0,0.08);
text-align: center;
}
.lions-sidebar .profile-pic img {
width: 80px;
border-radius: 50%;
margin-bottom: 15px;
}
.lions-sidebar h3 {
font-size: 18px;
margin-bottom: 20px;
color: #333;
}
.profile-nav {
list-style: none;
padding: 0;
margin: 0;
}
.profile-nav li,
.profile-nav li a {
padding: 10px 15px;
margin-bottom: 8px;
display: block;
border-radius: 8px;
color: #444;
text-decoration: none;
transition: all 0.3s ease;
}
.profile-nav li.active,
.profile-nav li a:hover {
background-color: #C5A66B;
color: #fff;
}
.logout-btn {
color: #d9534f;
font-weight: bold;
}
/* Main Content */
.lions-main {
flex: 1;
background-color: #fff;
border-radius: 12px;
padding: 30px;
box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.lions-main h2 {
margin-bottom: 25px;
color: #444;
border-bottom: 2px solid #f1e7db;
padding-bottom: 10px;
}
.form-wrapper {
padding: 10px;
}
/* Button Styling (Forminator override) */
.forminator-button {
background-color: #C5A66B !important;
color: #fff !important;
border-radius: 8px !important;
border: none !important;
padding: 10px 20px !important;
font-weight: bold;
cursor: pointer;
}
.forminator-button:hover {
background-color: #b1935a !important;
}
