/* Wedding Setup Section */
.wedding-setup-section {
    background: rgba(30, 30, 30, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(214, 51, 132, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(214, 51, 132, 0.3);
}

.setup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(214, 51, 132, 0.3);
}

.setup-header h3 {
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0;
}

.setup-counters {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.tables-counter,
.chairs-counter {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.setup-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.table-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: rgba(40, 40, 40, 0.8);
    border-radius: 15px;
    border: 2px solid rgba(214, 51, 132, 0.3);
    transition: all 0.3s ease;
    min-height: 200px;
    width: 200px;
    justify-content: flex-start;
}

.table-visual:hover {
    background: rgba(50, 50, 50, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(214, 51, 132, 0.3);
    border-color: rgba(214, 51, 132, 0.5);
}

.table-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    border: 3px solid white;
    z-index: 2;
}

.table-number {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.chairs-container {
    position: relative;
    width: 160px;
    height: 160px;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.chair {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    border: 2px solid rgba(214, 51, 132, 0.5);
    box-shadow: 0 2px 8px rgba(214, 51, 132, 0.3);
    transition: all 0.3s ease;
    z-index: 1;
}

.chair:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(214, 51, 132, 0.5);
    background: rgba(214, 51, 132, 0.2);
}

.table-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.remove-table-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.remove-table-btn:hover {
    background: #c0392b;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

.add-table-btn-side {
    background: linear-gradient(135deg, #d63384, #e91e63);
    color: white;
    border: none;
    border-radius: 15px;
    width: 80px;
    height: 80px;
    cursor: pointer;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(214, 51, 132, 0.4);
    flex-shrink: 0;
    border: 2px solid rgba(214, 51, 132, 0.3);
    align-self: center;
}

.add-table-btn-side:hover {
    background: linear-gradient(135deg, #c44569, #d63384);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(214, 51, 132, 0.5);
}

.add-table-btn-below {
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
    margin-top: 1rem;
    width: 100%;
}

.add-table-btn-below:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.4);
}

/* Responsive Design for Wedding Setup */
@media (max-width: 768px) {
    .table-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .chairs-controls {
        margin-left: 0;
    }
} 