/* Base layout styles */
.wrapper {
	min-height: 100vh;
	min-width: 1264px;
	display: flex;
	flex-direction: column;
}

/* Main content styles */
.main {
	flex: 1;
	padding: 20px;
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
}

/* Footer styles */
.footer {
	background-color: #f5f5f5;
	padding: 20px;
	text-align: center;
	font-size: 14px;
	color: #666;
}

/* Flash messages */
.flash-messages {
	margin-bottom: 20px;
}

.alert {
	padding: 12px 20px;
	border-radius: 4px;
	margin-bottom: 10px;
}

.alert--error {
	background-color: #fee2e2;
	color: #dc2626;
	border: 1px solid #fecaca;
}

.alert--success {
	background-color: #dcfce7;
	color: #16a34a;
	border: 1px solid #bbf7d0;
}

/* Form styles */
.form-group {
	margin-bottom: 15px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: 500;
}

.form-control {
	width: 100%;
	border: 1px solid #ddd;
	border-radius: 4px;
	background-color: white;
}

.form-control:focus {
	border-color: #0033ff;
}

.btn {
	display: inline-block;
	padding: 8px 16px;
	border-radius: 4px;
	text-align: center;
	font-weight: 500;
	cursor: pointer;
	transition: background-color 0.2s;
}

.btn--primary {
	background-color: #008000;
	color: white;
}

.btn--primary:hover {
	background-color: #006400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.main {
		padding: 15px;
	}
}

@media (max-width: 480px) {
	.main {
		padding: 10px;
	}

	.header-subtitle {
		font-size: 12px;
	}
}
