  /* CSS para estilizar a lista de produtos reservados */
.reserved-products-container {
    font-family: Arial, sans-serif;
    border: 2px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    background: #f9f9f9;
}

.reserved-product-item {
    
    align-items: center;
    margin-bottom: 15px;
}

.product-image {
    max-width: 100px;
    margin-right: 15px;
}

.product-details {
    flex: 1;
}

.product-name {
    font-size: 18px;
    font-weight: bold;
}

.product-price {
    color: #f39c12;
}

.total-cost {
    font-size: 24px;
    font-weight: bold;
    text-align: right;
    margin-top: 20px;
    color: #e74c3c;
}

  /* Estilos para a lista de reservas */
.reserved-products-list {
    display: none;
    margin-top: 10px;
    padding-left: 20px;
}
/* Estilo para o botão */
#myplugin-toggle-reserved-products {
    background-color: #2d3548;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    position: relative; /* permite posicionamento absoluto dos filhos */
    z-index: 1; /* garante que o botão fique acima de outros elementos */
}

#myplugin-toggle-reserved-products:hover {
    background-color: #1a2330;
}

/* Estilo para a tabela */
.myplugin-reserved-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.myplugin-reserved-table th, .myplugin-reserved-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
}

.myplugin-reserved-table th {
    background-color: #f5f5f5;
}

.myplugin-reserved-product-item:hover {
    background-color: #f9f9f9;
}

/* Estilo para o custo total */
.myplugin-total-cost {
    margin-top: 20px;
    font-weight: bold;
    font-size: 18px;
}

/* Para posicionar o botão em qualquer lugar */
#myplugin-toggle-reserved-products[data-position="top-right"] {
    position: absolute;
    top: 10px;
    right: 10px;
}

#myplugin-toggle-reserved-products[data-position="bottom-left"] {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

/* ... e assim por diante para outras posições */


