/* Contenitore generale */
#board-gamers-tables {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px;
}

/* Card principale */
.bg-card {
    width: 320px;
    background: #f8f9fa; /* Colore chiaro per lo sfondo */
    border-radius: 12px; /* Angoli arrotondati */
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.08), -4px -4px 10px rgba(255, 255, 255, 0.8); /* Effetto neumorfismo */
    overflow: hidden;
    text-decoration: none !important;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.2s ease-in-out;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

/* Effetto hover */
.bg-card:hover {
    transform: translateY(-4px);
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.1), -6px -6px 12px rgba(255, 255, 255, 0.9);
}

.bg-card-status {
    background-color: #000000;
}
.bg-card-status-open {
    background-color: #007bff;
}

/* Corpo della card */
.bg-card-body {
    height: 110px;
    font-family: sans-serif;
    padding: 12px;
    font-size: 0.95rem;
    color: #444;
    text-align: left;
}

/* Titolo */
.bg-title {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    margin-bottom: 10px !important;
    line-height: 1.4;
}

/* Descrizione */
.bg-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0 !important;
}

/* Footer della card */
.bg-card-footer {
    padding: 12px;
    font-size: 0.9rem;
    font-family: sans-serif;
    font-weight: 500;
    color: #444;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Testo quando non ci sono tavoli */
.bg-no-tables {
    text-align: center;
    font-size: 1rem;
    color: #777;
    font-weight: 500;
    padding: 20px;
}
