/* Consolidated custom styles extracted from Blade views */

/* ===== Begin: resources/views/layouts/app.blade.php ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
	background-color: #f5f7fa;
	display: flex;
	min-height: 100vh;
}

/* Sidebar Styles - Matching Dashboard Theme */
.sidebar {
	width: 250px;
	background-color: #2c3e50;
	color: white;
	transition: all 0.3s ease;
	position: fixed;
	height: 100vh;
	z-index: 100;
	overflow-y: auto;
}

.sidebar.collapsed {
	width: 70px;
}

.sidebar.collapsed .sidebar-header h2,
.sidebar.collapsed .sidebar-menu h3,
.sidebar.collapsed .menu-item span {
	display: none;
}

.sidebar.collapsed .menu-item {
	justify-content: center;
	padding: 12px 0;
}

.sidebar.collapsed .menu-item i {
	margin: 0;
	font-size: 16px;
}

.sidebar.collapsed .sidebar-header {
	justify-content: center;
	padding: 20px 10px;
}

.sidebar.collapsed .sidebar-header img {
	margin: 0;
}

/* Tooltip styles for collapsed sidebar */
.sidebar.collapsed .menu-item {
	position: relative;
}

.sidebar.collapsed .menu-item:hover::after {
	content: attr(title);
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	background-color: #2c3e50;
	color: white;
	padding: 8px 12px;
	border-radius: 4px;
	font-size: 12px;
	white-space: nowrap;
	z-index: 1000;
	margin-left: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.sidebar.collapsed .menu-item:hover::before {
	content: '';
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translateY(-50%);
	border: 5px solid transparent;
	border-right-color: #2c3e50;
	margin-left: 5px;
	z-index: 1000;
}

.sidebar-header {
	padding: 20px;
	background-color: #1a252f;
	display: flex;
	align-items: center;
	gap: 10px;
	border-bottom: 1px solid #34495e;
}

.sidebar-header img {
	width: 30px;
	height: 30px;
}

.sidebar-header h2 {
	font-size: 1.1rem;
	font-weight: 500;
}

.sidebar-toggle {
	background: none;
	border: none;
	color: white;
	cursor: pointer;
	padding: 5px;
	border-radius: 4px;
	transition: background-color 0.2s;
	margin-left: auto;
}

.sidebar-toggle:hover {
	background-color: #34495e;
}

.sidebar.collapsed .sidebar-toggle {
	margin-left: 0;
}

.sidebar-menu {
	padding: 20px 0;
}

.sidebar-menu h3 {
	color: #bdc3c7;
	font-size: 12px;
	text-transform: uppercase;
	padding: 0 20px 10px 20px;
	margin-top: 20px;
	font-weight: 500;
	letter-spacing: 0.5px;
}

.sidebar-menu h3:first-child {
	margin-top: 0;
}

.menu-item {
	padding: 12px 20px;
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	transition: all 0.2s;
	text-decoration: none;
	color: white;
	border: none;
	background: none;
	width: 100%;
	text-align: left;
}

.menu-item.active {
	background-color: #3498db;
	border-right: 3px solid #2980b9;
}

.menu-item:hover:not(.active) {
	background-color: #34495e;
	color: white;
	text-decoration: none;
}

.menu-item i {
	width: 20px;
	text-align: center;
	font-size: 14px;
}

.menu-item span {
	font-size: 16px;
	font-weight: 500;
}

/* Submenu Styles */
.has-submenu {
	position: relative;
}

.submenu-arrow {
	margin-left: auto;
	transition: transform 0.3s ease;
}

.has-submenu.active .submenu-arrow {
	transform: rotate(180deg);
}

.submenu {
	display: none;
	background-color: #1a252f;
	border-left: 3px solid #3498db;
}

.submenu.show {
	display: block;
}

.submenu-item {
	padding: 10px 20px 10px 50px;
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	transition: all 0.2s;
	text-decoration: none;
	color: #bdc3c7;
	border: none;
	background: none;
	width: 100%;
	text-align: left;
	font-size: 14px;
}

.submenu-item.active {
	background-color: #3498db;
	color: white;
}

.submenu-item:hover:not(.active) {
	background-color: #34495e;
	color: white;
	text-decoration: none;
}

.submenu-item i {
	width: 16px;
	text-align: center;
	font-size: 12px;
}

.submenu-item span {
	font-size: 14px;
	font-weight: 400;
}

/* Collapsed sidebar submenu styles */
.sidebar.collapsed .submenu {
	position: absolute;
	left: 100%;
	top: 0;
	width: 200px;
	background-color: #2c3e50;
	border-left: none;
	border-radius: 0 4px 4px 0;
	box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
}

.sidebar.collapsed .submenu-item {
	padding: 12px 15px;
}

/* Main Content Styles */
.main-content {
	flex: 1;
	margin-left: 250px;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	transition: margin-left 0.3s ease;
}

.main-content.sidebar-collapsed {
	margin-left: 70px;
}

.dashboard-header {
	background-color: white;
	color: #2c3e50;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid #ecf0f1;
}

.dashboard-header h1,
.dashboard-header h2 {
	font-size: 1.5rem;
	font-weight: 500;
	color: #2c3e50;
}

.user-controls {
	display: flex;
	align-items: center;
	gap: 1.5rem;
}

.notification-badge {
	position: relative;
	cursor: pointer;
}

.notification-badge i {
	font-size: 1.2rem;
	color: #7f8c8d;
}

.notification-count {
	position: absolute;
	top: -8px;
	right: -8px;
	background-color: #e74c3c;
	color: white;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
}

.user-profile {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

.user-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: #3498db;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 0.9rem;
}

.logout-btn {
	color: #e74c3c;
	border: none;
	background: none;
	cursor: pointer;
	font-size: 0.9rem;
	padding: 5px;
}

.logout-btn:hover {
	color: #c0392b;
}

/* Mobile Menu Button */
.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	color: #2c3e50;
	font-size: 1.2rem;
	cursor: pointer;
	padding: 8px;
	border-radius: 4px;
	transition: background-color 0.2s;
}

.mobile-menu-btn:hover {
	background-color: #ecf0f1;
}

/* Mobile Backdrop */
.sidebar-backdrop {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 99;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.sidebar {
		transform: translateX(-100%);
		transition: transform 0.3s ease;
	}

	.sidebar.show {
		transform: translateX(0);
	}

	.sidebar-backdrop.show {
		display: block;
	}

	.main-content {
		margin-left: 0;
	}

	.mobile-menu-btn {
		display: block;
	}
}

@media (max-width: 480px) {
	.sidebar {
		width: 280px;
	}

	.dashboard-header {
		padding: 1rem;
	}

	.user-controls {
		gap: 1rem;
	}
}

.dashboard-content {
	padding: 1.5rem;
	overflow-y: auto;
	flex: 1;
	background-color: #f5f7fa;
}

/* Content Area Styling */
.content-wrapper {
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	overflow: hidden;
}

.content-header {
	background-color: #f8f9fa;
	padding: 1rem 1.5rem;
	border-bottom: 1px solid #dee2e6;
}

.content-header h1 {
	color: #2c3e50;
	font-size: 1.3rem;
	font-weight: 500;
}

.content-body {
	padding: 1.5rem;
}

/* Dashboard Content Styles */
.dashboard-content {
	padding: 1.5rem;
	overflow-y: auto;
	height: 100%;
}

/* Stats Cards */
.stats-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.stat-card {
	background: white;
	border-radius: 10px;
	padding: 1.5rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	transition: transform 0.2s;
}

.stat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-card h3 {
	color: #7f8c8d;
	font-size: 1rem;
	margin-bottom: 0.5rem;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
}

.stat-value {
	font-size: 2rem;
	font-weight: bold;
	margin: 0.5rem 0;
	color: #2c3e50;
}

.stat-change {
	color: #7f8c8d;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	gap: 5px;
}

.positive {
	color: #2ecc71;
}

.negative {
	color: #e74c3c;
}

.warning {
	color: #f39c12;
}

/* Charts Section */
.charts-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.chart-container {
	background: white;
	border-radius: 10px;
	padding: 1.5rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.chart-container h3 {
	margin-bottom: 1rem;
	color: #2c3e50;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
}

/* Bottom Section */
.bottom-row {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 1.5rem;
}

.recent-activity,
.quick-actions {
	background: white;
	border-radius: 10px;
	padding: 1.5rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.recent-activity h3,
.quick-actions h3 {
	margin-bottom: 1rem;
	color: #2c3e50;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
}

.activity-list {
	list-style-type: none;
}

.activity-list li {
	padding: 0.75rem 0;
	border-bottom: 1px solid #ecf0f1;
	display: flex;
	align-items: center;
}

.activity-list li:last-child {
	border-bottom: none;
}

.activity-icon {
	margin-right: 0.75rem;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	font-size: 0.9rem;
}

.activity-time {
	margin-left: auto;
	color: #7f8c8d;
	font-size: 0.8rem;
}

.shipped {
	background-color: #e3f9ee;
	color: #2ecc71;
}

.received {
	background-color: #e3f2fd;
	color: #3498db;
}

.alert {
	background-color: #fde8e8;
	color: #e74c3c;
}

.delay {
	background-color: #fff4e5;
	color: #f39c12;
}

.user {
	background-color: #f0f4f8;
	color: #7f8c8d;
}

.customer {
	background-color: #e8f4fd;
	color: #3498db;
}

.returns {
	background-color: #fff3cd;
	color: #f39c12;
}

/* Quick Actions */
.quick-actions {
	display: flex;
	flex-direction: column;
}

.action-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding: 0.75rem;
	margin-bottom: 0.75rem;
	background-color: #3498db;
	color: white;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.2s;
	text-decoration: none;
}

.action-btn:hover {
	background-color: #2980b9;
	transform: translateY(-2px);
	color: white;
	text-decoration: none;
}

.action-btn i {
	font-size: 1rem;
}

/* Charts */
canvas {
	width: 100% !important;
	height: 300px !important;
}

/* Responsive Dashboard Styles */
@media (max-width: 992px) {
	.charts-row {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 768px) {
	.stats-row {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
	}

	.bottom-row {
		grid-template-columns: 1fr !important;
	}
}

/* Alert Styles */
.alert {
	padding: 12px 16px;
	margin-bottom: 20px;
	border: 1px solid transparent;
	border-radius: 6px;
	position: relative;
}

.alert-success {
	color: #155724;
	background-color: #d4edda;
	border-color: #c3e6cb;
}

.alert-danger {
	color: #721c24;
	background-color: #f8d7da;
	border-color: #f5c6cb;
}

.alert-dismissible .btn-close {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	padding: 1.25rem 1rem;
	background: none;
	border: none;
	font-size: 1.1rem;
	opacity: 0.5;
	cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
	.sidebar {
		transform: translateX(-100%);
		width: 250px !important;
	}

	.sidebar.show {
		transform: translateX(0);
	}

	.sidebar.collapsed {
		width: 250px !important;
	}

	.sidebar.collapsed .sidebar-header h2,
	.sidebar.collapsed .sidebar-menu h3,
	.sidebar.collapsed .menu-item span {
		display: block;
	}

	.sidebar.collapsed .menu-item {
		justify-content: flex-start;
		padding: 12px 20px;
	}

	.sidebar.collapsed .menu-item i {
		margin-right: 10px;
		font-size: 14px;
	}

	.sidebar.collapsed .sidebar-header {
		justify-content: flex-start;
		padding: 20px;
	}

	.sidebar.collapsed .sidebar-header img {
		margin-right: 10px;
	}

	.main-content {
		margin-left: 0;
	}

	.main-content.sidebar-collapsed {
		margin-left: 0;
	}

	.dashboard-header h1,
	.dashboard-header h2 {
		font-size: 1.2rem;
	}

	.dashboard-content {
		padding: 1rem;
	}
}

@media (max-width: 480px) {
	.sidebar {
		transform: translateX(-100%);
		width: 250px;
	}

	.sidebar.show {
		transform: translateX(0);
	}

	.main-content {
		margin-left: 0;
	}

	.dashboard-header {
		padding: 0.5rem 1rem;
	}

	.mobile-menu-btn {
		display: block;
		background: none;
		border: none;
		color: #2c3e50;
		font-size: 1.2rem;
		cursor: pointer;
	}
}

.mobile-menu-btn {
	display: none;
}

/* Override Bootstrap styles */
.navbar {
	display: none !important;
}

#app>.container-fluid {
	display: none !important;
}

/* Custom styles for form elements */
.form-control,
.form-select {
	border-radius: 6px;
	border: 1px solid #ced4da;
	padding: 0.5rem 0.75rem;
}

.form-control:focus,
.form-select:focus {
	border-color: #3498db;
	box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.btn {
	border-radius: 6px;
	padding: 0.5rem 1rem;
	font-weight: 500;
}

.btn-primary {
	background-color: #3498db;
	border-color: #3498db;
}

.btn-primary:hover {
	background-color: #2980b9;
	border-color: #2980b9;
}

/* ===== End: resources/views/layouts/app.blade.php ===== */

/* ===== Begin: resources/views/sales/create.blade.php ===== */
.container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 20px;
}

header {
	background-color: #2c3e50;
	color: white;
	padding: 15px 20px;
	margin-bottom: 30px;
	border-radius: 5px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-actions {
	display: flex;
	gap: 15px;
}

.back-btn {
	padding: 8px 15px;
	background-color: #3498db;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: background-color 0.3s;
}

.back-btn:hover {
	background-color: #2980b9;
	color: white;
	text-decoration: none;
}

.form-container {
	background-color: white;
	padding: 30px;
	border-radius: 5px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-title {
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
	gap: 10px;
	color: #2c3e50;
	font-size: 1.5rem;
	font-weight: 600;
}

.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: #2c3e50;
}

.form-group.required label::after {
	content: " *";
	color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
}

.form-group textarea {
	min-height: 120px;
	resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #3498db;
	box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.form-group.full-width {
	grid-column: span 2;
}

.error-message {
	color: #e74c3c;
	font-size: 0.85rem;
	margin-top: 5px;
	display: flex;
	align-items: center;
	gap: 5px;
}

.error-message::before {
	content: "⚠";
	font-size: 1rem;
}

.form-actions {
	display: flex;
	justify-content: flex-end;
	gap: 15px;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.submit-btn {
	padding: 12px 25px;
	background-color: #2ecc71;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 500;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: background-color 0.3s;
}

.submit-btn:hover {
	background-color: #27ae60;
}

.cancel-btn {
	padding: 12px 25px;
	background-color: #95a5a6;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: background-color 0.3s;
	text-decoration: none;
}

.cancel-btn:hover {
	background-color: #7f8c8d;
	color: white;
	text-decoration: none;
}

.customer-select-group {
	display: flex;
	gap: 10px;
	align-items: center;
}

.customer-select-group select {
	flex: 1;
}

.create-customer-btn {
	padding: 12px;
	background-color: #27ae60;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	transition: background-color 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.create-customer-btn:hover {
	background-color: #229954;
}

/* Modal Styles */
.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
	background-color: white;
	margin: 5% auto;
	padding: 0;
	border-radius: 5px;
	width: 90%;
	max-width: 500px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-header {
	background-color: #2c3e50;
	color: white;
	padding: 15px 20px;
	border-radius: 5px 5px 0 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal-header h3 {
	margin: 0;
}

.close {
	color: white;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	line-height: 1;
}

.close:hover {
	color: #bdc3c7;
}

.modal-body {
	padding: 20px;
	max-height: 60vh;
	overflow-y: auto;
}

.modal-body .form-group {
	margin-bottom: 15px;
}

.modal-body textarea {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-family: inherit;
	resize: vertical;
}

.modal-footer {
	padding: 15px 20px;
	border-top: 1px solid #eee;
	display: flex;
	justify-content: flex-end;
	gap: 10px;
}

@media (max-width: 768px) {
	.form-grid {
		grid-template-columns: 1fr;
	}

	.form-group.full-width {
		grid-column: span 1;
	}

	header {
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}

	.form-actions {
		flex-direction: column;
	}

	.submit-btn,
	.cancel-btn {
		width: 100%;
		justify-content: center;
	}
}

.form-help {
	margin-top: 5px;
	font-size: 0.85rem;
	color: #666;
	display: flex;
	align-items: center;
	gap: 5px;
}

#quantity-validation {
	margin-top: 8px;
	padding: 8px 12px;
	border-radius: 4px;
	font-weight: 500;
}

#quantity-validation.error {
	background-color: rgba(231, 76, 60, 0.1);
	border: 1px solid rgba(231, 76, 60, 0.3);
}

#quantity-validation.success {
	background-color: rgba(39, 174, 96, 0.1);
	border: 1px solid rgba(39, 174, 96, 0.3);
}

/* ===== Logistics Section Styles ===== */
.logistics-section {
	margin-top: 15px;
	padding: 15px;
	background-color: #f8f9fa;
	border: 1px solid #e9ecef;
	border-radius: 5px;
}

.logistics-section .form-grid {
	margin-bottom: 0;
}

.logistics-section .form-group {
	margin-bottom: 15px;
}

.logistics-section .form-group:last-child {
	margin-bottom: 0;
}

/* ===== Payment Modal Styles ===== */
.modal {
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
	background-color: #fefefe;
	margin: 5% auto;
	padding: 0;
	border: none;
	border-radius: 8px;
	width: 90%;
	max-width: 500px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-header {
	padding: 20px;
	border-bottom: 1px solid #e9ecef;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #f8f9fa;
	border-radius: 8px 8px 0 0;
}

.modal-header h3 {
	margin: 0;
	color: #333;
	font-size: 1.25rem;
}

.close {
	color: #aaa;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	line-height: 1;
}

.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
}

.modal-body {
	padding: 20px;
}

.modal-footer {
	padding: 15px 20px;
	border-top: 1px solid #e9ecef;
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	background-color: #f8f9fa;
	border-radius: 0 0 8px 8px;
}

/* Radio Button Styles */
.radio-group {
	display: flex;
	gap: 20px;
	margin-top: 10px;
}

.radio-label {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 8px 12px;
	border: 2px solid #e9ecef;
	border-radius: 6px;
	transition: all 0.3s ease;
	background-color: #fff;
}

.radio-label:hover {
	border-color: #007bff;
	background-color: #f8f9fa;
}

.radio-label input[type="radio"] {
	margin-right: 8px;
	transform: scale(1.2);
}

.radio-label input[type="radio"]:checked + .radio-text {
	color: #007bff;
	font-weight: 600;
}

.radio-label:has(input[type="radio"]:checked) {
	border-color: #007bff;
	background-color: #e3f2fd;
}

.radio-text {
	font-size: 14px;
	color: #555;
	transition: color 0.3s ease;
}

/* Payment Status Colors */
.text-danger {
	color: #dc3545 !important;
}

.text-success {
	color: #28a745 !important;
}

.text-warning {
	color: #ffc107 !important;
}

/* Payment Item Styles */
.payment-item {
	background-color: #f8f9fa;
	transition: background-color 0.3s ease;
}

.payment-item:hover {
	background-color: #e9ecef;
}

.payment-item strong {
	color: #007bff;
}

.payment-item small {
	color: #6c757d;
	font-style: italic;
}

/* Payment Section Styles */
.payment-section {
	margin-bottom: 25px;
	padding: 15px;
	border: 1px solid #e9ecef;
	border-radius: 6px;
	background-color: #f8f9fa;
}

.payment-section h4 {
	margin: 0 0 15px 0;
	color: #333;
	font-size: 1.1rem;
	font-weight: 600;
	border-bottom: 2px solid #007bff;
	padding-bottom: 8px;
}

.payment-section:last-of-type {
	margin-bottom: 20px;
}

/* ===== End: resources/views/sales/create.blade.php ===== */
