/* Style the overall account page */
.my-account {
padding: 20px;
background-color: #f9f9f9;
}
/* Style the account page heading */
.my-account h2 {
font-size: 24px;
margin-bottom: 10px;
}
/* Style the account page links */
.my-account a {
color: #0073aa;
text-decoration: none;
}
.my-account a:hover {
text-decoration: underline;
}
/* Style the account page form */
.my-account form {
margin-top: 20px;
}
/* Style form labels and inputs */
.my-account label {
display: block;
margin-bottom: 5px;
}
.my-account input[type="text"],
.my-account input[type="password"],
.my-account select {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
margin-bottom: 10px;
}
/* Style form buttons */
.my-account button {
background-color: #0073aa;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
.my-account button:hover {
background-color: #005c87;
}