.cafe-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cafe-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    border-radius: 10px;
    color: white;
}

.cafe-header .subtitle {
    margin: 5px 0 0;
    opacity: 0.9;
    font-size: 14px;
}

.live-badge {
    background: #ff4444;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.lists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.type-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-top: 5px solid;
    transition: transform 0.3s;
    position: relative;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.type-header {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.approval-badge {
    background: #ff9800;
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 12px;
    margin-left: 10px;
}

.count-display {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin: 10px 0;
}

.waiting-customers {
    text-align: center;
    color: #666;
    margin-bottom: 10px;
}

.estimate {
    text-align: center;
    background: #f0f0f0;
    padding: 8px;
    border-radius: 5px;
    font-weight: 500;
}

.add-to-waitlist {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.form-note {
    background: #fff3cd;
    color: #856404;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group .required {
    color: #f44336;
}

.form-group select,
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group small {
    display: block;
    color: #666;
    font-size: 12px;
    margin-top: 5px;
}

.type-note {
    margin-top: 5px;
    font-size: 13px;
    font-weight: 500;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: opacity 0.3s;
}

.submit-btn:hover {
    opacity: 0.9;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.message-box {
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

.success-message {
    color: #155724;
    padding: 15px;
    background: #d4edda;
    border-radius: 5px;
    border-left: 4px solid #28a745;
}

.error-message {
    color: #721c24;
    padding: 15px;
    background: #f8d7da;
    border-radius: 5px;
    border-left: 4px solid #dc3545;
}

.info-message {
    color: #0c5460;
    padding: 15px;
    background: #d1ecf1;
    border-radius: 5px;
    border-left: 4px solid #17a2b8;
}

.loading-message {
    color: #856404;
    padding: 15px;
    background: #fff3cd;
    border-radius: 5px;
    border-left: 4px solid #ffc107;
}

.estimated-time {
    margin-top: 20px;
    padding: 15px;
    background: #e8f5e8;
    border-radius: 8px;
    text-align: center;
    font-size: 18px;
    color: #2e7d32;
}

/* Request Status Checker */
.request-status-checker {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.status-check-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.status-check-form input {
    flex: 1;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
}

.status-check-form input:focus {
    outline: none;
    border-color: #667eea;
}

.check-btn {
    background: #2196F3;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.check-btn:hover {
    background: #1976D2;
}

.status-result {
    margin-top: 20px;
}

.status-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.status-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid;
}

.status-item.status-pending {
    border-left-color: #ffc107;
}

.status-item.status-approved {
    border-left-color: #28a745;
}

.status-item.status-rejected {
    border-left-color: #dc3545;
}

.status-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: #666;
    font-size: 14px;
}

.status-name {
    font-weight: bold;
    margin-bottom: 8px;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.status-pending .status-badge {
    background: #fff3cd;
    color: #856404;
}

.status-approved .status-badge {
    background: #d4edda;
    color: #155724;
}

.status-rejected .status-badge {
    background: #f8d7da;
    color: #721c24;
}

.est-time {
    margin-top: 10px;
    font-size: 14px;
    color: #2e7d32;
    background: #e8f5e8;
    padding: 5px 10px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .lists-grid {
        grid-template-columns: 1fr;
    }
    
    .type-card {
        margin-bottom: 15px;
    }
    
    .status-check-form {
        flex-direction: column;
    }
    
    .check-btn {
        width: 100%;
    }
}