.st-container {
	background: white;
	border-radius: 24px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 20, 40, 0.08);
	padding: 2.5rem 2rem;
	width: 100%;
	max-width: 650px;
	transition: all 0.2s ease;
  	margin: 0px auto;
}

h1 {
	font-size: 2rem;
	font-weight: 600;
	color: #0b2b4a;
	margin-bottom: 0.25rem;
	text-align: center;
	letter-spacing: -0.5px;
}

.subtitle {
	text-align: center;
	color: #4a6272;
	margin-bottom: 2rem;
	font-size: 1rem;
	font-weight: 400;
}

.form-group {
	margin-bottom: 1.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

label {
	font-weight: 600;
	color: #1e3b52;
	font-size: 0.95rem;
	margin-left: 0.2rem;
}

select {
	width: 100%;
	padding: 0.9rem 1.2rem;
	border: 2px solid #dce4ec;
	border-radius: 14px;
	font-size: 1rem;
	background-color: #f9fbfd;
	transition: border 0.2s, box-shadow 0.2s;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b5d7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 1.2em;
	cursor: pointer;
}

select:focus {
	outline: none;
	border-color: #2d7fc1;
	box-shadow: 0 0 0 3px rgba(45, 127, 193, 0.2);
}

.hidden {
	display: none !important;
}

.fade-in {
	animation: fadeSlide 0.3s ease forwards;
}

@keyframes fadeSlide {
	from {
		opacity: 0;
		transform: translateY(6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.btn {
	background: #1e4a6b;
	color: white;
	border: none;
	border-radius: 14px;
	padding: 0.9rem 2rem;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
	width: 100%;
	letter-spacing: 0.3px;
	margin-top: 0.8rem;
	box-shadow: 0 4px 10px rgba(30, 74, 107, 0.25);
}

.btn:hover:not(:disabled) {
	background: #123752;
	box-shadow: 0 6px 16px rgba(30, 74, 107, 0.35);
}

.btn:active:not(:disabled) {
	transform: scale(0.98);
}

.btn:disabled {
	background: #b0c4d9;
	box-shadow: none;
	cursor: not-allowed;
}

.result-block {
	margin-top: 2.5rem;
	border-top: 2px solid #e3ebf3;
	padding-top: 2rem;
	animation: fadeSlide 0.4s ease;
}

.result-block h2 {
	font-size: 1.4rem;
	color: #0b2b4a;
	margin-bottom: 1.2rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.result-block h2::before {
	content: "📋";
	font-size: 1.5rem;
}

.applicant-info {
	background: #f2f7fc;
	border-radius: 16px;
	padding: 1rem 1.4rem;
	margin-bottom: 1.5rem;
	border-left: 5px solid #2d7fc1;
	color: #1e3b52;
	font-weight: 500;
}

/*
table {
	width: 100%;
	border-collapse: collapse;
	background: white;
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

th {
	background: #eef3f8;
	color: #1e3b52;
	font-weight: 600;
	text-align: left;
	padding: 0.8rem 1rem;
	font-size: 0.9rem;
}

td {
	padding: 0.7rem 1rem;
	border-bottom: 1px solid #edf2f7;
	color: #1e2f3d;
}

tr:last-child td {
	border-bottom: none;
}
*/

.badge {
	display: inline-block;
	background: #e3f0fa;
	color: #0f3b5c;
	padding: 0.2rem 0.8rem;
	border-radius: 30px;
	font-size: 0.8rem;
	font-weight: 600;
}

.badge.budget {
	background: #d4edda;
	color: #0b3b1e;
}

.badge.contract {
	background: #fff3cd;
	color: #5c4700;
}

.empty-message {
	color: #667c8c;
	font-style: italic;
	padding: 1rem;
	background: #f8fafc;
	border-radius: 12px;
}

@media (max-width: 500px) {
	.container {
		padding: 1.8rem 1.2rem;
	}
}