/* PrimeVenue Booking System Styles */

.primevenue-register-container,
.primevenue-booking-form,
.primevenue-dashboard {
    max-width: 1200px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="password"],
.form-field input[type="date"],
.form-field input[type="time"],
.form-field input[type="number"],
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

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

.btn-primary {
    padding: 12px 30px;
    background: #d4af37;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #b8941f;
}

.form-footer {
    margin-top: 20px;
    text-align: center;
    color: #666;
}

.booking-summary {
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
}

.booking-summary h4 {
    margin-top: 0;
}

.total-price {
    font-size: 20px;
    color: #d4af37;
}

.login-notice {
    text-align: center;
    padding: 20px;
    background: #fff3cd;
    border-radius: 5px;
    color: #856404;
}

/* Dashboard Styles */

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

.stat-card {
    padding: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #000;
    border-radius: 10px;
    text-align: center;
}

.stat-card h4 {
    margin: 0;
    font-size: 32px;
    font-weight: bold;
}

.stat-card p {
    margin: 10px 0 0 0;
    font-size: 14px;
}

.dashboard-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
}

.tab-link {
    padding: 12px 24px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: #666;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-link.active {
    color: #d4af37;
    border-bottom-color: #d4af37;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.bookings-table,
.venues-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.bookings-table th,
.bookings-table td,
.venues-table th,
.venues-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.bookings-table th,
.venues-table th {
    background: #f5f5f5;
    font-weight: bold;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-confirmed {
    background: #d4edda;
    color: #155724;
}

.status-cancelled,
.status-rejected {
    background: #f8d7da;
    color: #721c24;
}

.status-completed {
    background: #d1ecf1;
    color: #0c5460;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .dashboard-tabs {
        flex-direction: column;
    }
    
    .bookings-table,
    .venues-table {
        font-size: 14px;
    }
    
    .bookings-table th,
    .bookings-table td,
    .venues-table th,
    .venues-table td {
        padding: 8px;
    }
}
