.coral-animation {
    height: 200px;
    background-color: azure;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
}

#user-interface {
    flex: 1;
    height: 200px;
    overflow-y: scroll;
    padding: 20px;
}

.button-group {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 20px; /* Add some space between button group and next section */
}

.action-button {
    flex: 1; /* Each button takes up equal space */
    padding: 10px 20px;
    background-color: #FFB300;
    border-radius: 10px;
    color: white;
    border: solid 1px #ccc;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.5s ease;
    cursor: pointer;
    margin: 0 2px; /* Minimize space between buttons */
}

/* Remove the margin from the first and last button to avoid extra space on the sides */
.button-group .action-button:first-child {
    margin-left: 0;
}

.button-group .action-button:last-child {
    margin-right: 0;
}

.points-display {
    font-size: 18px;
    margin-bottom: 20px;
}

.statistics {
    margin-bottom: 20px;
}

.statistics-table {
    width: 100%;
    border-collapse: collapse;
}

.statistics-table th, .statistics-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.statistics-table th {
}

.inventory {
    display: flex;
    flex-wrap: wrap;
}

.inventory .item {
    width: 48%;
    margin: 1%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
}