.dive-frontend-wrap {
	max-width: 1200px;
	margin: 30px auto;
	font-family: Arial, sans-serif;
}

.dive-frontend-header {
	background: linear-gradient(135deg, #005b8f, #003f63);
	color: #fff;
	padding: 24px;
	border-radius: 12px;
	margin-bottom: 24px;
}

.dive-frontend-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	margin-bottom: 24px;
}

.dive-frontend-card {
	background: #fff;
	border: 1px solid #d7e1ea;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 3px 10px rgba(0,0,0,0.04);
	margin-bottom: 24px;
}

.dive-frontend-card h3,
.dive-frontend-card h2 {
	margin-top: 0;
	color: #003f63;
}

.dive-frontend-card input[type="text"],
.dive-frontend-card input[type="email"],
.dive-frontend-card input[type="date"],
.dive-frontend-card select,
.dive-frontend-card textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #c7d3df;
	border-radius: 8px;
	box-sizing: border-box;
}

.dive-frontend-card button,
.dive-frontend-card input[type="submit"] {
	background: #005b8f;
	color: #fff;
	border: 0;
	padding: 10px 16px;
	border-radius: 8px;
	cursor: pointer;
}

.dive-frontend-card button:hover,
.dive-frontend-card input[type="submit"]:hover {
	background: #00476f;
}

.dive-table {
	width: 100%;
	border-collapse: collapse;
}

.dive-table th,
.dive-table td {
	border: 1px solid #d7e1ea;
	padding: 10px;
	text-align: left;
}

.dive-table th {
	background: #f3f7fb;
}

.dive-alert {
	padding: 14px 16px;
	border-radius: 8px;
	margin: 20px 0;
}

.dive-alert-error {
	background: #fdeaea;
	color: #9f1d1d;
	border: 1px solid #efc2c2;
}
