Spaces:
Running
Running
body { | |
font-family: Arial, sans-serif; | |
background-color: #f4f4f4; | |
margin: 0; | |
padding: 0; | |
} | |
.container { | |
max-width: 800px; | |
margin: 50px auto; | |
padding: 20px; | |
background-color: #fff; | |
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | |
} | |
h1 { | |
text-align: center; | |
color: #333; | |
} | |
form { | |
display: flex; | |
flex-direction: column; | |
gap: 10px; | |
margin-bottom: 20px; | |
} | |
input { | |
padding: 10px; | |
font-size: 16px; | |
border: 1px solid #ccc; | |
border-radius: 5px; | |
} | |
button { | |
padding: 10px; | |
font-size: 16px; | |
background-color: #28a745; | |
color: #fff; | |
border: none; | |
border-radius: 5px; | |
cursor: pointer; | |
} | |
button:hover { | |
background-color: #218838; | |
} | |
table { | |
width: 100%; | |
border-collapse: collapse; | |
margin-top: 20px; | |
} | |
th, td { | |
padding: 12px; | |
text-align: left; | |
border-bottom: 1px solid #ddd; | |
} | |
th { | |
background-color: #f8f9fa; | |
} | |
tr:hover { | |
background-color: #f1f1f1; | |
} | |
.sell-btn { | |
background-color: #dc3545; | |
color: #fff; | |
border: none; | |
padding: 5px 10px; | |
border-radius: 3px; | |
cursor: pointer; | |
} | |
.sell-btn:hover { | |
background-color: #c82333; | |
} |