/* Frontend Styles */
.beo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.beo-event-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Slot System */
.beo-slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(50px, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.beo-slot {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ccc;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.beo-slot.available { background: #fff; color: #333; }
.beo-slot.locked { background: #ffeb3b; border-color: #fbc02d; }
.beo-slot.paid { background: #f44336; color: #fff; border-color: #d32f2f; cursor: not-allowed; }
