body {
	font-family: sans-serif;
	background-color: #f4f6f9;
	color: #333;
	margin: 0;
	padding: 20px;
	}
	
.logo {
	text-align: center;
	margin-bottom: 20px;
	}
	
img {
	max-width: 250px;
	height: auto;
	display: inline-block;
	}
	
.searchbox {
	margin-bottom: 20px;
	}
	
.container {
	max-width: 1200px;
	margin: 0 auto;
	background: #fff;
	padding: 25px;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0,0,0,0.1);
	}
	
h1 {
	margin-top: 0;
	color: #1a365d;
	}
	
.info-bar {
	display: flex;
	justify-content: space-between;
	font-size: 0.9em;
	color: #666;
	margin-bottom: 20px;
	background: #edf2f7;
	padding: 10px;
	border-radius: 5px;
	}
	
.alert {
	background: #fff5f5;
	color: #c53030;
	padding: 12px;
	border-radius: 5px;
	margin-bottom: 20px;
	font-weight: bold;
	}
	
.cart {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #1a365d;
	color: white;
	padding: 15px 25px;
	border-radius: 50px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.3);
	display: none;
	font-family: sans-serif;
	z-index: 9999;
	align-items: center;
	gap: 15px;
	}
	
.tabs {
	display: flex;
	border-bottom: 2px solid #e2e8f0;
	margin-bottom: 20px;
	gap: 5px;
	flex-wrap: wrap;
	}
	
.tab-button {
	background: #edf2f7;
	border: none;
	padding: 12px 20px;
	font-size: 1em;
	font-weight: bold;
	color: #4a5568;
	cursor: pointer;
	border-radius: 5px 5px 0 0;
	}
	
.tab-button.active {
	background: #3182ce;
	color: white;
	}
	
.tab-content {
	display: none;
	}
	
.tab-content.active {
	display: block;
	}
	
table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
	}
	
th, td {
	padding: 12px;
	border-bottom: 1px solid #e2e8f0;
	}
	
th {
	background-color: #f7fafc;
	color: #4a5568;
	}
	
tr:hover {
	background-color: #f8fafc;
	}
	
.badge {
	padding: 5px 10px;
	border-radius: 12px;
	font-size: 0.85em;
	font-weight: bold;
	display: inline-block;
	}
	
.badge-success {
	background-color: #c6f6d5;
	color: #22543d;
	}
	
.badge-danger {
	background-color: #fed7d7;
	color: #742a2a;
	}
	
.precio-final {
	font-weight: bold;
	color: #2b6cb0;
	font-size: 1.1em;
	}