body {
    font-family: Arial, sans-serif;
    margin: 50px;
    background-color: papayawhip;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}
th, td {
    border: 1px solid black;
    padding: 10px;
    text-align: center;
}
th:first-child, td:first-child {
    width: 20%;
}
img {
    width: 120px;
    height: auto;
    border-radius: 10px;
}
.error-message {
    color: red;
    font-weight: bold;
    text-align: center;
}
section {
    margin-top: 30px;
    background: pink;
    padding: 10px;
    border-radius: 8px;
}
.button-container {
    margin-bottom: 20px;
    text-align: center;
}
.hide-button {
    background-color: pink;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}
.show-button {
    background-color: saddlebrown;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}
