/* Festly Tickets Styling */
.festly-tickets-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.festly-tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.festly-ticket-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.festly-ticket-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.festly-ticket-card h3 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 1.4em;
}

.festly-ticket-description {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.festly-ticket-price {
    font-size: 1.8em;
    font-weight: bold;
    color: #2c5aa0;
    margin-bottom: 10px;
}

.festly-ticket-availability {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.festly-add-to-cart {
    background: #2c5aa0;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    width: 100%;
    transition: background 0.2s;
}

.festly-add-to-cart:hover {
    background: #1e3f73;
}

/* Checkout Styling */
.festly-checkout-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.festly-cart-summary {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.cart-total {
    padding: 15px 0;
    font-size: 1.2em;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
}

#stripe-card-element {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
}

#festly-submit-payment {
    background: #28a745;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    width: 100%;
}

#festly-submit-payment:hover {
    background: #218838;
}

/* Admin Styling */
.festly-dashboard {
    margin-top: 20px;
}

.festly-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-box {
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

.stat-box h3 {
    margin: 0 0 10px 0;
    color: #666;
}

.stat-box p {
    font-size: 2em;
    font-weight: bold;
    color: #2c5aa0;
    margin: 0;
}
