/* TableReady Custom Styles */
:root {
    --primary-color: #28a745;
    --secondary-color: #ff7f00;
    --accent-color: #ffcc00;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
}

/* Logo Styling */
.navbar-brand span.ready {
    background: linear-gradient(to right, #ff7f00, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar-brand span.table {
    color: #28a745;
}

/* Button Styling */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #e67300;
    border-color: #cc6600;
}

/* Card Styling */
.card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 20px;
}

.card-header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    font-weight: 600;
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}

/* Form Styling */
.form-control {
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 10px 15px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Table Styling */
.table th {
    font-weight: 600;
    border-top: none;
    border-bottom: 2px solid #dee2e6;
}

/* Waitlist Dashboard */
.waitlist-card {
    transition: all 0.3s ease;
}

.waitlist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Status Badges */
.badge-waiting {
    background-color: var(--accent-color);
    color: #333;
}

.badge-seated {
    background-color: var(--primary-color);
    color: white;
}

.badge-cancelled {
    background-color: #dc3545;
    color: white;
}

.badge-notified {
    background-color: var(--secondary-color);
    color: white;
}

/* Footer */
footer {
    background-color: #343a40;
    color: white;
    padding: 30px 0;
}

footer a {
    color: var(--accent-color);
}

footer a:hover {
    color: white;
    text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .card-body {
        padding: 1rem;
    }
    
    .table-responsive {
        font-size: 0.9rem;
    }
}
