/* ===== Staff Dashboard Styles ===== */
.rb-staff-dashboard {
    max-width: 1000px;
    margin: 20px auto;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

.rb-staff-dashboard h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #2271b1;
    padding-bottom: 8px;
}

.rb-logout-form {
    text-align: right;
    margin-bottom: 20px;
}

.rb-logout-form button {
    background: #2271b1;
    color: #fff;
    border: 0;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}
.rb-logout-form button:hover {
    background: #1d4e8a;
}

.rb-staff-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.rb-staff-table th {
    background: #f1f1f1;
    text-align: left;
    padding: 10px;
    border-bottom: 2px solid #ddd;
}
.rb-staff-table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.rb-staff-table tr:hover {
    background: #fafafa;
}

/* Status badges */
.rb-status-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
}
.rb-status-pending { background: #f0ad4e; }
.rb-status-confirmed { background: #28a745; }
.rb-status-cancelled { background: #dc3545; }

/* Dropdown styling */
.rb-staff-table select {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
    min-width: 100px;
}