body {
margin: 0;
font-family: Arial, sans-serif;
background: #f7f7f7;
}
.sidebar {
background: white;
width: 100%;
max-width: 300px;
padding: 20px;
box-shadow: 0 0 10px #ccc;
}
.profile {
text-align: center;
}
.profile img {
border-radius: 50%;
width: 100px;
height: 100px;
}
.verified {
color: green;
font-size: 14px;
}
.ref-code {
color: red;
font-weight: bold;
}
.menu {
list-style: none;
padding: 0;
}
.menu li {
background: #dce9f7;
margin: 10px 0;
padding: 12px;
border-radius: 6px;
font-weight: bold;
cursor: pointer;
}
.main {
display: flex;
flex-direction: column;
gap: 20px;
padding: 20px;
}
.card {
padding: 20px;
border-radius: 10px;
color: white;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.card h3 {
margin: 0 0 10px;
}
.card a {
color: white;
text-decoration: underline;
font-size: 14px;
}
.deposit {
background: #00bcd4;
}
.withdraw {
background: #ef5350;
}
.balance {
background: #ffb300;
}
.float-buttons {
position: fixed;
bottom: 20px;
right: 20px;
display: flex;
flex-direction: column;
gap: 10px;
}
.float-buttons a {
background: #007bff;
color: white;
font-size: 20px;
padding: 12px;
border-radius: 50%;
text-align: center;
box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.float-buttons .whatsapp {
background: #25D366;
}