.metacards-playzone{    
    border: 1px solid black;
    border-radius: 3px;
    /* position: absolute; 
    top: 30; 
    left: 0;  */
    width: 100%; 
    height: 80%; 
    background-color: #f0f0f0; 
    overflow: hidden;
}

.metacards-deck-zone {
    /* position: absolute; 
    bottom: 0; 
    left: 0;  */
    width: 100%;     
    padding: 10px;
}

.metacards-deck-control{
    background-color:azure;
    width: 100%;    
    height: 40px;
    padding-left: 10px;
    display: inline-block; 
    vertical-align: top;
}

.metacards-decks-wrapper {
    width: 100%;    
    height: 100%;
    padding-top: 5px;
    display: flex;
    align-items: top;
}

.metacards-playzone-wrapper {
    width: 100%;    
    /* height: max(calc(100vh - 150px), 1500px); */
    height: calc(100vh - 150px); 
    padding: 5px;
}

.metacards-card-container{
    width: 130px;
    height: 170px;
    border: 1px solid gainsboro;
    display: inline-block;
    margin: 5px;
    position: relative;

}

.metacards-card{
    position: absolute;
    border: 1px solid grey;
    border-radius: 10px;
}

.metacards-card-in-deck{
    max-width: 130px; /* Set the width to 130px */
    max-height: 130px; /* Set the height to 130px */
    vertical-align: middle;
    position: absolute;
    bottom: 0; /* Align the image to the bottom */
    left: 0;
    right: 0;
    margin: auto;
}

.metacards-card-in-deck_txt{
    width: 100%;
    height: 40px; /* Adjust the height to your needs */
    position: absolute;
    top: 0; /* Align the text box to the top */
    left: 0;
    right: 0;
    text-align: center;
    font-weight: bold;
}


.metacards-deck {    
    height: 225px;
    border: 1px solid black;
    border-radius: 3px;
    overflow-x: auto; 
    white-space: nowrap;
    flex: 1;    
    padding: 5px;
}

.metacards-decks-cntr {    
    width: 100px;
    padding: 5px;    
    display: flex;
    flex-direction: column; /* Arrange elements in a column */
    justify-content: top; /* Center elements vertically */
    align-items: center; /* Center elements horizontally */    
}

.metacards-decks-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%; 
    background-color: #007bff; 
    color: #ffffff; 
    border: none; 
    cursor: pointer; 
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.metacards-decks-btn-red {
    width: 30px;
    height: 30px;
    border-radius: 50%; 
    background-color:coral;
    color: #ffffff; 
    border: none; 
    cursor: pointer; 
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.metacard-button-toppanel {
    align-items: center;
    padding: 3px 7px;
    font-family: -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    border-radius: 3px;
    border: none;
  
    color: #fff;
    background: linear-gradient(180deg, #4B91F7 0%, #367AF6 100%);
    background-origin: border-box;
    box-shadow: 0px 0.5px 1.5px rgba(54, 122, 246, 0.25), inset 0px 0.8px 0px -0.25px rgba(255, 255, 255, 0.2);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    font-size: 16px;
}

.metacards-decks-btn-red:hover {
    background-color: red;
}


.metacards-decks-title {
    width: 100%;
    text-align: center;
    font-weight: bold;
    border-bottom: 1px solid black;    
}