/* Seat Predictor Pro Public Styles - Dark Theme */
.seat-predictor-pro.dark-theme {
	background-color: #1a1a1a;
	color: #ffffff;
	padding: 30px;
	border-radius: 12px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	box-shadow: 0 10px 30px rgba(0,0,0,0.5);
	margin: 20px 0;
}

.predictor-header h2 {
	color: #00d2ff;
	margin-top: 0;
	font-size: 28px;
}

.predictor-header p {
	color: #b0b0b0;
	margin-bottom: 25px;
}

.predictor-form-section {
	background: #2a2a2a;
	padding: 25px;
	border-radius: 8px;
	margin-bottom: 30px;
}

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

.input-group label {
	font-weight: bold;
	color: #e0e0e0;
}

.input-group input {
	background: #333;
	border: 1px solid #444;
	color: white;
	padding: 12px;
	border-radius: 6px;
	font-size: 16px;
}

#predict-btn {
	background: linear-gradient(135deg, #00d2ff 0%, #3a7bd5 100%);
	color: white;
	border: none;
	padding: 12px 25px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: bold;
	transition: transform 0.2s;
}

#predict-btn:hover {
	transform: scale(1.02);
}

.results-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #2a2a2a;
	padding: 15px;
	border-radius: 8px 8px 0 0;
	margin-top: 20px;
}

.filters-sidebar {
	background: #2a2a2a;
	padding: 20px;
	border-radius: 8px;
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 15px;
}

.filter-group label {
	display: block;
	margin-bottom: 5px;
	font-size: 13px;
	color: #aaa;
}

.filter-group select {
	width: 100%;
	background: #333;
	color: white;
	border: 1px solid #444;
	padding: 8px;
	border-radius: 4px;
}

.predictor-table {
	width: 100%;
	border-collapse: collapse;
	background: #2a2a2a;
	margin-top: 2px;
}

.predictor-table th, .predictor-table td {
	padding: 15px;
	text-align: left;
	border-bottom: 1px solid #3a3a3a;
}

.predictor-table th {
	background: #333;
	color: #00d2ff;
}

.chance-badge {
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: bold;
}

.high-chance { background: #00c853; color: white; }
.medium-chance { background: #ffab00; color: white; }
.low-chance { background: #ff5252; color: white; }

/* Grid View Styles */
.results-grid-view .results-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
	padding: 20px 0;
}

.college-card {
	background: #2a2a2a;
	border-radius: 10px;
	padding: 20px;
	border: 1px solid #3a3a3a;
	transition: 0.3s;
}

.college-card:hover {
	border-color: #00d2ff;
	box-shadow: 0 5px 15px rgba(0,210,255,0.2);
}

.view-btn {
	background: #333;
	border: 1px solid #444;
	color: white;
	padding: 5px 12px;
	cursor: pointer;
}

.view-btn.active {
	background: #00d2ff;
	border-color: #00d2ff;
}

.export-btn {
	background: #444;
	border: none;
	color: white;
	padding: 5px 12px;
	margin-left: 5px;
	cursor: pointer;
	border-radius: 4px;
}

@media (max-width: 768px) {
	.results-toolbar { flex-direction: column; gap: 10px; }
	.predictor-table { display: block; overflow-x: auto; }
}
