table {
    border-collapse: collapse;
    width: 100%;
    min-width: 900px;
    border: 1px solid black;
}
td {
    height: 400px;
    text-align: center;
    background-color: #fefeef;
}
.container {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.img-gold-tent {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 400px;
    z-index: 2;
}
.img-tent {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 400px;
    z-index: 2;
}

.closed {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, 0) rotate(-30deg);
    background: gold;
    color: black;
    font-size: 28px;
    z-index: 3;
    text-align: center;
    padding: 3px 6px;
    border: 2px solid black;
    border-radius: 1px;
    cursor: pointer;
    white-space: nowrap; /* Prevent text wrapping */
}

.button {
    position: absolute;
    left: 50%;
    top: 20%;
    transform: translate(-50%, 0);
    background: gold;
    color: black;
    font-size: 22px;
    z-index: 3;
    text-align: center;
    padding: 3px 6px;
    border: 2px solid black;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap; /* Prevent text wrapping */
}


.cost {
    position: absolute;
    left: 90%;
    top: 35%;
    transform: translate(-50%, 0);
    background: gold;
    color: black;
    font-size: 22px;
    z-index: 3;
    text-align: center;
    padding: 3px 6px;
    border: 2px solid black;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap; /* Prevent text wrapping */
}
.other-image {
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, 0); /* Center-align horizontally */
    height: 140px;
    z-index: 1;
    display: flex; /* Added to display children inline horizontally */
    flex-direction: row; /* Ensure horizontal layout */
    align-items: center; /* Vertically center the images within the div */
    justify-content: center; /* Horizontally center the images within the div */
}
.user-text {
    position: absolute;
    left: 50%;
    top: 60%;
    z-index: 1;
    transform: translate(-50%, 0); /* Center-align horizontally */
    color: black;
    font-size: 20px;
}

.other-text {
    position: absolute;
    left: 50%;
    top: 80%;
    z-index: 1;
    transform: translate(-50%, 0); /* Center-align horizontally */
    color: black;
    font-size: 20px;
}

/* Style for the anchor tag to make it cover the entire td */
td a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}
