Deposit.css
/* styles.css */
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
background-color: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 300px;
text-align: center;
}
h1 {
color: #333;
}
.balance h2 {
margin: 10px 0;
}
.deposit-form input {
padding: 10px;
margin: 10px 0;
width: calc(100% - 22px);
box-sizing: border-box;
}
.deposit-form button {
padding: 10px 20px;
background-color: #007BFF;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.deposit-form button:hover {
background-color: #0056b3;
}
.transaction-history ul {
list-style: none;
padding: 0;
margin: 0;
text-align: left;
}
.transaction-history li {
background-color: #e9e9e9;
margin: 5px 0;
padding: 10px;
border-radius: 5px;
}