body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.blackjack-table {
    position: relative;
    width: 80%;
    height: 80%;
}
/*
.table-surface {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background-color: #004400;
    border-radius: 50px 50px 290px 290px; /* Adjust for inner shape */
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3); /* Inner shadow for depth */
}
*/
.leather-border {
    border: 5px solid #333;
    /*border-image: url('leather-texture.png') 30 repeat;*/
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.3), inset -2px -2px 5px rgba(255, 255, 255, 0.1);
    background: linear-gradient(to bottom, #444, #333);
}