/* East Africa Connect — base styles. Palette: blue / white / gold, per brief. */

:root {
	--eac-blue: #0B3D91;
	--eac-gold: #F4C430;
	--eac-white: #FFFFFF;
	--eac-text: #1A1A2E;
	--eac-border: #E2E2E2;
}

body { color: var(--eac-text); }

.eac-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.eac-site-header { background: var(--eac-white); border-bottom: 1px solid var(--eac-border); padding: 16px 0; }
.eac-site-header .eac-container { display: flex; align-items: center; justify-content: space-between; }
.eac-site-title { color: var(--eac-blue); font-weight: 700; font-size: 1.25rem; text-decoration: none; }

.eac-site-footer { background: var(--eac-blue); color: var(--eac-white); padding: 24px 0; margin-top: 40px; }
.eac-site-footer a { color: var(--eac-white); }

/* Forms (registration, login, listing creation) */
.eac-form { max-width: 480px; }
.eac-form p { margin-bottom: 14px; }
.eac-form label { display: block; font-weight: 600; margin-bottom: 4px; }
.eac-form input[type=text],
.eac-form input[type=email],
.eac-form input[type=password],
.eac-form textarea {
	width: 100%; padding: 10px 12px; border: 1px solid var(--eac-border); border-radius: 6px;
}
.eac-form button {
	background: var(--eac-blue); color: var(--eac-white); border: none; padding: 10px 24px;
	border-radius: 6px; font-weight: 600; cursor: pointer;
}
.eac-form button:hover { background: #082c6b; }

.eac-form-errors { background: #fdecea; border: 1px solid #f5c2c0; border-radius: 6px; padding: 10px 14px; margin-bottom: 14px; }
.eac-error { color: #b3261e; margin: 0; }

.eac-notice { padding: 10px 14px; border-radius: 6px; margin-bottom: 18px; }
.eac-notice-success { background: #e7f6ec; color: #1e6b3c; border: 1px solid #b8e4c7; }
.eac-notice-error { background: #fdecea; color: #b3261e; border: 1px solid #f5c2c0; }

/* Dashboard */
.eac-dashboard h2 { color: var(--eac-blue); }
.eac-listings-table { width: 100%; border-collapse: collapse; margin: 12px 0 28px; }
.eac-listings-table th, .eac-listings-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--eac-border); }
.eac-listings-table th { background: #F7F8FA; font-weight: 600; }
.eac-note { color: #666; font-size: 0.9rem; }
