/* Staff Container - Enhanced */
.srb-staff-container {
	width: 100%;
	margin: 0;
	padding: 24px;
	background: #ffffff;
	min-height: 100vh;
}

/* Staff Header - Enhanced */
.srb-staff-header {
	background: #000000;
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	margin-bottom: 32px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 24px;
	color: #ffffff;
}

.srb-staff-header .srb-page-title {
	margin: 0;
	flex: 1;
	color: #ffffff;
	font-size: 32px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.srb-staff-header .srb-page-description {
	margin: 12px 0 0 0;
	width: 100%;
	color: rgba(255, 255, 255, 0.95);
	font-size: 16px;
	line-height: 1.6;
}

/* Navigation Links - Enhanced */
.srb-staff-nav-links {
	display: flex;
	gap: 12px;
	align-items: center;
}

.srb-nav-link {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 24px;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(10px);
	color: #fff;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	transition: all 0.3s ease;
	border: 2px solid rgba(255, 255, 255, 0.3);
}

.srb-nav-link:hover {
	background: rgba(255, 255, 255, 0.3);
	color: #fff;
	text-decoration: none;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.srb-nav-link .srb-nav-icon {
	font-size: 20px;
}

.srb-nav-link .srb-nav-text {
	display: inline-block;
}

/* Page Title */
.srb-page-title {
	font-size: 32px;
	font-weight: 700;
	color: #2c3e50;
	margin: 0 0 12px 0;
	letter-spacing: -0.5px;
}

.srb-page-description {
	font-size: 16px;
	color: #7f8c8d;
	margin: 0 0 32px 0;
	line-height: 1.6;
}

/* Form Wrapper - Enhanced */
.srb-staff-form-wrapper {
	background: #ffffff;
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	transition: box-shadow 0.3s ease;
}

.srb-staff-form-wrapper:hover {
	box-shadow: 0 6px 28px rgba(0, 0, 0, 0.12);
}

.srb-staff-form-wrapper .srb-form .required {
	color: #e74c3c;
	font-weight: 700;
	margin-left: 4px;
}

/* Form Sections - Scoped to staff forms only */
.srb-staff-form-wrapper .srb-form-section {
	margin-bottom: 36px;
	padding-bottom: 28px;
	border-bottom: 2px solid #ecf0f1;
}

.srb-staff-form-wrapper .srb-form-section:last-of-type {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.srb-staff-form-wrapper .srb-form-section-title {
	font-size: 20px;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 24px;
	padding-bottom: 12px;
	border-bottom: 3px solid #000000;
	display: inline-block;
	letter-spacing: -0.3px;
}

/* Dashboard Wrapper - Enhanced */
.srb-dashboard-wrapper {
	background: #ffffff;
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Section Title */
.srb-section-title {
	font-size: 22px;
	font-weight: 700;
	color: #2c3e50;
	margin: 0 0 24px 0;
	padding-bottom: 12px;
	border-bottom: 3px solid #000000;
	display: inline-block;
}

/* Statistics Section */
.srb-statistics-section {
	margin-bottom: 32px;
}

.srb-statistics-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 20px;
}

.srb-stat-card {
	background: #000000;
	padding: 24px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	gap: 16px;
	transition: all 0.3s ease;
	color: #fff;
}

.srb-stat-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.srb-stat-icon {
	font-size: 36px;
	opacity: 0.9;
}

.srb-stat-content {
	flex: 1;
}

.srb-stat-value {
	font-size: 32px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 8px;
}

.srb-stat-label {
	font-size: 13px;
	opacity: 0.9;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Capacity Section */
.srb-capacity-section {
	margin-bottom: 32px;
	padding: 28px;
	background: #f8f9fa;
	border-radius: 12px;
	border: 1px solid #dee2e6;
}

.srb-capacity-controls {
	display: flex;
	gap: 16px;
	align-items: flex-end;
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.srb-capacity-control-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.srb-capacity-control-group label {
	font-weight: 600;
	font-size: 13px;
	color: #2c3e50;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.srb-capacity-control-group input {
	padding: 10px 14px;
	border: 2px solid #dee2e6;
	border-radius: 8px;
	font-size: 14px;
	background: #fff;
}

.srb-capacity-control-group select {
	padding: 10px 14px;
	border: 2px solid #dee2e6;
	border-radius: 8px;
	font-size: 14px;
	background: #fff;
}

.srb-capacity-table-wrapper {
	overflow-x: auto;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.srb-capacity-table {
	width: 100%;
	border-collapse: collapse;
}

.srb-capacity-table thead {
	background: #000000;
	color: #fff;
}

.srb-capacity-table th {
	padding: 14px 12px;
	text-align: left;
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
}

.srb-capacity-table td {
	padding: 12px;
	border-bottom: 1px solid #f1f3f5;
	font-size: 14px;
}

.srb-capacity-table tbody tr:hover {
	background: #f8f9fa;
}

.srb-capacity-table tbody tr.srb-capacity-full {
	background: #fff5f5;
}

.srb-capacity-table tbody tr.srb-capacity-high {
	background: #fffbf0;
}

.srb-capacity-table tbody tr.srb-capacity-medium {
	background: #f0f9ff;
}

.srb-capacity-table tbody tr.srb-capacity-low {
	background: #f0fdf4;
}

.srb-capacity-bar {
	position: relative;
	width: 100%;
	height: 24px;
	background: #e9ecef;
	border-radius: 12px;
	overflow: hidden;
}

.srb-capacity-fill {
	height: 100%;
	background: linear-gradient(90deg, #28a745 0%, #20c997 100%);
	transition: width 0.3s ease;
	border-radius: 12px;
}

.srb-capacity-table tr.srb-capacity-full .srb-capacity-fill {
	background: linear-gradient(90deg, #dc3545 0%, #c82333 100%);
}

.srb-capacity-table tr.srb-capacity-high .srb-capacity-fill {
	background: linear-gradient(90deg, #fd7e14 0%, #ffc107 100%);
}

.srb-capacity-table tr.srb-capacity-medium .srb-capacity-fill {
	background: linear-gradient(90deg, #17a2b8 0%, #20c997 100%);
}

.srb-capacity-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 11px;
	font-weight: 700;
	color: #2c3e50;
	z-index: 1;
}

.srb-capacity-status {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.srb-status-full {
	background: #dc3545;
	color: #fff;
}

.srb-status-available {
	background: #28a745;
	color: #fff;
}

/* Clickable Capacity Rows */
.srb-capacity-row-clickable {
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.srb-capacity-row-clickable:hover {
	transform: scale(1.01);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.srb-view-timeslot-bookings {
	color: #007bff;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.2s ease;
}

.srb-view-timeslot-bookings:hover {
	color: #0056b3;
	text-decoration: underline;
}

/* Modal Styles */
.srb-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
}

.srb-modal.srb-modal-open {
	display: flex;
	align-items: center;
	justify-content: center;
}

.srb-modal-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
}

.srb-modal-content {
	position: relative;
	background: #fff;
	border-radius: 16px;
	width: 90%;
	max-width: 700px;
	max-height: 85vh;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	animation: srbModalSlideIn 0.3s ease;
}

@keyframes srbModalSlideIn {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.srb-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	background: #000;
	color: #fff;
}

.srb-modal-title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
}

.srb-modal-close {
	background: none;
	border: none;
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	padding: 0;
	line-height: 1;
	transition: opacity 0.2s ease;
}

.srb-modal-close:hover {
	opacity: 0.7;
}

.srb-modal-body {
	padding: 24px;
	max-height: calc(85vh - 80px);
	overflow-y: auto;
}

/* Timeslot Bookings List */
.srb-timeslot-bookings-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.srb-timeslot-booking-card {
	background: #f8f9fa;
	border-radius: 12px;
	padding: 16px;
	border-left: 4px solid #28a745;
	transition: box-shadow 0.2s ease;
}

.srb-timeslot-booking-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.srb-timeslot-booking-card.srb-booking-status-pending {
	border-left-color: #ffc107;
}

.srb-timeslot-booking-card.srb-booking-status-canceled {
	border-left-color: #dc3545;
	opacity: 0.7;
}

.srb-booking-card-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}

.srb-booking-name {
	font-size: 16px;
	font-weight: 700;
	color: #2c3e50;
}

.srb-booking-guests {
	background: #000;
	color: #fff;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
}

.srb-booking-card-details {
	display: grid;
	gap: 8px;
	margin-bottom: 12px;
}

.srb-booking-detail {
	font-size: 14px;
	color: #555;
}

.srb-detail-label {
	font-weight: 600;
	color: #333;
}

.srb-booking-note {
	background: #fff;
	padding: 10px;
	border-radius: 8px;
	font-style: italic;
	border: 1px solid #e9ecef;
}

.srb-booking-card-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 12px;
	border-top: 1px solid #e9ecef;
}

.srb-booking-status {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 4px 10px;
	border-radius: 12px;
	background: #28a745;
	color: #fff;
}

.srb-booking-status-pending .srb-booking-status {
	background: #ffc107;
	color: #000;
}

.srb-booking-status-canceled .srb-booking-status {
	background: #dc3545;
}

.srb-booking-id {
	font-size: 12px;
	color: #6c757d;
}

.srb-timeslot-summary {
	margin-top: 20px;
	padding: 16px;
	background: #e9ecef;
	border-radius: 8px;
	font-size: 14px;
	text-align: center;
}

/* Visual Capacity Grid */
.srb-capacity-quick-dates {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
}

.srb-quick-date-btn {
	padding: 8px 16px;
	border-radius: 6px;
	font-size: 14px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.srb-quick-date-btn.active {
	background: #000;
	color: #fff;
}

.srb-capacity-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px;
	background: #f8f9fa;
	border-radius: 8px;
	margin-bottom: 16px;
	font-weight: 600;
}

.srb-capacity-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 12px;
	margin-bottom: 16px;
}

.srb-capacity-card {
	background: #fff;
	border-radius: 12px;
	padding: 16px;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s ease;
	border: 2px solid transparent;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.srb-capacity-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.srb-capacity-card.srb-card-available {
	border-color: #28a745;
	background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.srb-capacity-card.srb-card-medium {
	border-color: #ffc107;
	background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.srb-capacity-card.srb-card-high {
	border-color: #fd7e14;
	background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
}

.srb-capacity-card.srb-card-full {
	border-color: #dc3545;
	background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
}

.srb-card-time {
	font-size: 18px;
	font-weight: 700;
	color: #2c3e50;
	margin-bottom: 8px;
}

.srb-card-tables {
	font-size: 14px;
	color: #555;
	margin-bottom: 4px;
}

.srb-card-available-num {
	font-size: 24px;
	font-weight: 700;
	color: #2c3e50;
}

.srb-card-label {
	font-size: 12px;
	color: #888;
}

.srb-card-guests {
	font-size: 12px;
	color: #666;
	margin-bottom: 4px;
}

.srb-card-bookings {
	font-size: 11px;
	color: #007bff;
	font-weight: 600;
}

.srb-card-bar {
	height: 6px;
	background: #e9ecef;
	border-radius: 3px;
	margin-top: 8px;
	overflow: hidden;
}

.srb-card-bar-fill {
	height: 100%;
	background: #28a745;
	border-radius: 3px;
	transition: width 0.3s ease;
}

.srb-card-full .srb-card-bar-fill {
	background: #dc3545;
}

.srb-card-high .srb-card-bar-fill {
	background: #fd7e14;
}

.srb-card-medium .srb-card-bar-fill {
	background: #ffc107;
}

.srb-capacity-legend {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
	font-size: 13px;
	color: #555;
}

.srb-legend-color {
	display: inline-block;
	width: 14px;
	height: 14px;
	border-radius: 3px;
	margin-right: 6px;
	vertical-align: middle;
}

/* Edit Booking Modal */
.srb-edit-modal-content {
	max-width: 600px;
}

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

.srb-edit-form-group {
	margin-bottom: 16px;
}

.srb-edit-form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	color: #333;
	font-size: 14px;
}

.srb-edit-form-group input,
.srb-edit-form-group textarea,
.srb-edit-form-group select {
	width: 100%;
	padding: 10px 14px;
	border: 2px solid #e9ecef;
	border-radius: 8px;
	font-size: 14px;
	transition: border-color 0.2s ease;
}

.srb-edit-form-group input:focus,
.srb-edit-form-group textarea:focus,
.srb-edit-form-group select:focus {
	border-color: #000;
	outline: none;
}

.srb-edit-form-actions {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid #e9ecef;
}

@media (max-width: 600px) {
	.srb-edit-form-row {
		grid-template-columns: 1fr;
	}
	
	.srb-capacity-grid {
		grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	}
}

/* Filters - Enhanced */
.srb-dashboard-filters {
	margin-bottom: 32px;
	padding: 28px;
	background: #f8f9fa;
	border-radius: 12px;
	border: 1px solid #dee2e6;
}

.srb-filter-row {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr auto;
	gap: 20px;
	align-items: end;
}

.srb-filter-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.srb-filter-group label {
	font-weight: 600;
	font-size: 14px;
	color: #2c3e50;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 12px;
}

.srb-filter-group input,
.srb-filter-group select {
	padding: 12px 16px;
	border: 2px solid #dee2e6;
	border-radius: 8px;
	font-size: 14px;
	transition: all 0.3s ease;
	background: #ffffff;
	color: #2c3e50;
}

.srb-filter-group input:focus,
.srb-filter-group select:focus {
	outline: none;
	border-color: #000000;
	box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
	background: #f8f9fa;
}

/* Tailwind-style dropdown (black and white) */
.srb-select-tailwind {
	display: block;
	width: 100%;
	padding: 0.5rem 0.75rem;
	padding-right: 2.5rem;
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: #000000;
	background-color: #ffffff;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
	background-position: right 0.5rem center;
	background-repeat: no-repeat;
	background-size: 1.5em 1.5em;
	border: 1px solid #000000;
	border-radius: 0.375rem;
	appearance: none;
	transition: all 0.15s ease-in-out;
}

.srb-select-tailwind:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
	border-color: #000000;
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.srb-select-tailwind:disabled {
	background-color: #f9fafb;
	color: #6b7280;
	cursor: not-allowed;
	opacity: 0.6;
}

.srb-select-tailwind option {
	color: #000000;
	background-color: #ffffff;
}

.srb-filter-actions {
	flex-direction: row;
	gap: 12px;
	align-items: flex-end;
}

.srb-btn {
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.srb-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.srb-btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.srb-btn-primary {
	background: #000000;
	color: #fff;
}

.srb-btn-primary:hover {
	background: #333333;
}

.srb-btn-secondary {
	background: #6c757d;
	color: #fff;
}

.srb-btn-secondary:hover {
	background: #5a6268;
}

.srb-btn-small {
	padding: 8px 16px;
	font-size: 12px;
}

.srb-btn-danger {
	background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
	color: #fff;
}

.srb-btn-danger:hover {
	background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
}

/* Dashboard Table - Enhanced */
.srb-dashboard-table-wrapper {
	overflow-x: auto;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.srb-dashboard-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
}

.srb-dashboard-table thead {
	background: #000000;
	color: #fff;
}

.srb-dashboard-table th {
	padding: 18px 16px;
	text-align: left;
	font-weight: 600;
	font-size: 13px;
	white-space: nowrap;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.srb-dashboard-table td {
	padding: 16px;
	border-bottom: 1px solid #f1f3f5;
	font-size: 14px;
	color: #2c3e50;
}

.srb-dashboard-table tbody tr {
	transition: all 0.2s ease;
}

.srb-dashboard-table tbody tr:hover {
	background: #f8f9fa;
	transform: scale(1.01);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.srb-dashboard-table tbody tr:last-child td {
	border-bottom: none;
}

.srb-no-data {
	text-align: center;
	padding: 60px 20px !important;
	color: #95a5a6;
	font-style: italic;
	font-size: 16px;
}

.srb-no-data::before {
	content: "📋";
	display: block;
	font-size: 48px;
	margin-bottom: 16px;
	opacity: 0.5;
}

/* Status Badges - Enhanced */
.srb-status-badge {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.srb-status-pending {
	background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
	color: #fff;
}

.srb-status-confirmed {
	background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
	color: #fff;
}

.srb-status-canceled {
	background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
	color: #fff;
}

/* Actions - Enhanced */
.srb-actions-cell {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
}

.srb-actions-cell select {
	padding: 8px 12px;
	border: 2px solid #dee2e6;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 600;
	background: #fff;
	color: #2c3e50;
	cursor: pointer;
	transition: all 0.3s ease;
}

.srb-actions-cell select:focus {
	outline: none;
	border-color: #000000;
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

/* Loading - Enhanced */
.srb-loading {
	text-align: center;
	padding: 60px 20px;
	color: #000000;
	font-size: 16px;
	font-weight: 600;
	position: relative;
}

.srb-loading::before {
	content: "";
	display: inline-block;
	width: 40px;
	height: 40px;
	border: 4px solid #e1e8ed;
	border-top-color: #000000;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
	margin-bottom: 16px;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* Message - Enhanced */
.srb-message {
	margin-top: 24px;
	padding: 18px 24px;
	border-radius: 10px;
	font-weight: 500;
	border-left: 4px solid;
	animation: slideDown 0.3s ease;
	display: flex;
	align-items: center;
	gap: 12px;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.srb-message.success {
	background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
	border-color: #28a745;
	color: #155724;
}

.srb-message.success::before {
	content: "✓";
	font-size: 20px;
	font-weight: 700;
}

.srb-message.error {
	background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
	border-color: #dc3545;
	color: #721c24;
}

.srb-message.error::before {
	content: "✕";
	font-size: 20px;
	font-weight: 700;
}

/* Source Badge - Enhanced */
.srb-source-badge {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 6px;
	font-size: 11px;
	font-weight: 600;
	background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
	color: #495057;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Returning Customer Badge */
.srb-returning-badge {
	display: inline-block;
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 600;
	background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%);
	color: #000000;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	box-shadow: 0 2px 4px rgba(255, 193, 7, 0.3);
	margin-left: 6px;
	vertical-align: middle;
	animation: subtle-pulse 2s ease-in-out infinite;
}

.srb-returning-badge:hover {
	box-shadow: 0 3px 8px rgba(255, 193, 7, 0.5);
	transform: translateY(-1px);
}

@keyframes subtle-pulse {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.85;
	}
}

/* Email Status Badges */
.srb-email-sent-badge {
	display: inline-block;
	padding: 3px 8px;
	border-radius: 10px;
	font-size: 11px;
	font-weight: 600;
	background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	box-shadow: 0 1px 3px rgba(40, 167, 69, 0.3);
}

.srb-email-failed-badge {
	display: inline-block;
	padding: 3px 8px;
	border-radius: 10px;
	font-size: 11px;
	font-weight: 600;
	background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	box-shadow: 0 1px 3px rgba(220, 53, 69, 0.3);
}

/* Responsive - Enhanced */
@media (max-width: 1200px) {
	.srb-filter-row {
		grid-template-columns: 1fr 1fr;
	}
	
	.srb-filter-actions {
		grid-column: 1 / -1;
	}
}

@media (max-width: 768px) {
	.srb-staff-container {
		padding: 16px;
		background: #f5f7fa;
	}
	
	.srb-staff-header {
		flex-direction: column;
		padding: 28px;
		border-radius: 12px;
	}
	
	.srb-staff-header .srb-page-title {
		font-size: 24px;
	}
	
	.srb-staff-nav-links {
		width: 100%;
	}
	
	.srb-nav-link {
		width: 100%;
		justify-content: center;
		padding: 12px 20px;
	}
	
	.srb-nav-text {
		display: inline-block;
	}
	
	.srb-staff-form-wrapper,
	.srb-dashboard-wrapper {
		padding: 24px;
		border-radius: 12px;
	}
	
	.srb-statistics-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	
	.srb-stat-card {
		padding: 16px;
		flex-direction: column;
		text-align: center;
	}
	
	.srb-stat-value {
		font-size: 24px;
	}
	
	.srb-capacity-controls {
		flex-direction: column;
	}
	
	.srb-capacity-control-group {
		width: 100%;
	}
	
	.srb-filter-row {
		grid-template-columns: 1fr;
		gap: 16px;
	}
	
	.srb-dashboard-filters {
		padding: 20px;
	}
	
	.srb-dashboard-table {
		font-size: 12px;
	}
	
	.srb-dashboard-table th,
	.srb-dashboard-table td {
		padding: 12px 8px;
	}
	
	.srb-actions-cell {
		flex-direction: column;
		align-items: stretch;
	}
	
	.srb-actions-cell select,
	.srb-actions-cell .srb-btn {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.srb-staff-container {
		padding: 12px;
	}
	
	.srb-staff-header {
		padding: 20px;
	}
	
	.srb-staff-form-wrapper,
	.srb-dashboard-wrapper {
		padding: 20px;
	}
	
	.srb-page-title {
		font-size: 22px;
	}
}

/* Pagination Styles */
#srb-bookings-pagination {
	margin-top: 24px;
	padding: 20px 24px;
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.srb-pagination {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 16px;
}

.srb-pagination-info {
	font-size: 14px;
	color: #6b7280;
	font-weight: 500;
	margin-right: auto;
}

.srb-pagination-controls {
	display: flex;
	gap: 4px;
	align-items: center;
	flex-wrap: wrap;
}

.srb-pagination-btn {
	padding: 8px 14px;
	background: #ffffff;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	color: #374151;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.15s ease;
	min-width: 38px;
	height: 38px;
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.srb-pagination-btn:hover:not(:disabled) {
	background: #f9fafb;
	border-color: #9ca3af;
	color: #111827;
}

.srb-pagination-btn:active:not(:disabled) {
	background: #f3f4f6;
	border-color: #6b7280;
}

.srb-pagination-btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
	background: #f9fafb;
	border-color: #e5e7eb;
	color: #9ca3af;
}

.srb-pagination-btn.srb-pagination-active {
	background: #000000;
	border-color: #000000;
	color: #ffffff;
	cursor: default;
	font-weight: 600;
}

.srb-pagination-btn.srb-pagination-active:hover {
	background: #1a1a1a;
	border-color: #1a1a1a;
	color: #ffffff;
}

.srb-pagination-number {
	min-width: 38px;
	font-weight: 500;
}

.srb-pagination-prev,
.srb-pagination-next {
	padding: 8px 14px;
	font-weight: 500;
	min-width: auto;
}

.srb-pagination-ellipsis {
	padding: 8px 6px;
	color: #9ca3af;
	font-weight: 600;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 38px;
	user-select: none;
	pointer-events: none;
}

@media (max-width: 768px) {
	#srb-bookings-pagination {
		padding: 16px 20px;
	}
	
	.srb-pagination {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}
	
	.srb-pagination-info {
		text-align: center;
		margin-right: 0;
		font-size: 13px;
	}
	
	.srb-pagination-controls {
		justify-content: center;
		gap: 4px;
	}
	
	.srb-pagination-btn {
		padding: 8px 12px;
		font-size: 13px;
		min-width: 36px;
		height: 36px;
	}
	
	.srb-pagination-number {
		min-width: 36px;
	}
	
	.srb-pagination-prev,
	.srb-pagination-next {
		padding: 8px 12px;
		font-size: 13px;
	}
	
	.srb-pagination-ellipsis {
		height: 36px;
		padding: 8px 4px;
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	#srb-bookings-pagination {
		padding: 14px 16px;
	}
	
	.srb-pagination {
		gap: 12px;
	}
	
	.srb-pagination-info {
		font-size: 12px;
	}
	
	.srb-pagination-controls {
		gap: 3px;
	}
	
	.srb-pagination-btn {
		padding: 7px 10px;
		min-width: 34px;
		height: 34px;
		font-size: 12px;
	}
	
	.srb-pagination-number {
		min-width: 34px;
	}
	
	.srb-pagination-prev,
	.srb-pagination-next {
		padding: 7px 10px;
		font-size: 12px;
	}
	
	.srb-pagination-ellipsis {
		height: 34px;
		padding: 7px 4px;
		font-size: 12px;
	}
}

/* Login Page Styles */
.srb-staff-login-container {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 24px;
	background: #192f25;
}

.srb-login-box {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	padding: 48px;
	width: 100%;
	max-width: 440px;
}

.srb-login-header {
	text-align: center;
	margin-bottom: 32px;
}

.srb-login-title {
	font-size: 32px;
	font-weight: 700;
	color: #2c3e50;
	margin: 0 0 12px 0;
	letter-spacing: -0.5px;
}

.srb-login-description {
	font-size: 16px;
	color: #7f8c8d;
	margin: 0;
	line-height: 1.6;
}

.srb-login-error {
	background: #fee;
	border: 1px solid #fcc;
	color: #c33;
	padding: 12px 16px;
	border-radius: 8px;
	margin-bottom: 24px;
	font-size: 14px;
}

.srb-login-field {
	margin-bottom: 24px;
}

.srb-login-field label {
	display: block;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 8px;
	font-size: 14px;
}

.srb-login-field .input {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 16px;
	transition: border-color 0.3s ease;
	box-sizing: border-box;
}

.srb-login-field .input:focus {
	outline: none;
	border-color: #667eea;
}

.srb-login-options {
	margin-bottom: 24px;
}

.srb-remember-me {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-size: 14px;
	color: #555;
}

.srb-remember-me input[type="checkbox"] {
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.srb-login-submit {
	margin-top: 32px;
}

.srb-login-submit .button-primary {
	width: 100%;
	padding: 14px 24px;
	background: #000000;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.srb-login-submit .button-primary:hover {
	background: #333333;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.srb-login-submit .button-primary:active {
	transform: translateY(0);
}

@media (max-width: 480px) {
	.srb-staff-login-container {
		padding: 16px;
	}
	
	.srb-login-box {
		padding: 32px 24px;
	}
	
	.srb-login-title {
		font-size: 24px;
	}
}
