/* ==========================================================================
   Student Records Manager - Frontend (shortcode) styles
   ========================================================================== */
.srm-front { max-width:1100px; margin:30px auto; font-family:inherit; color:#333; }
.srm-front-head {
	background:linear-gradient(135deg,#0072ff,#00c6ff); color:#fff;
	border-radius:10px 10px 0 0; padding:20px 24px;
	display:flex; align-items:center; justify-content:space-between;
	box-shadow:0 4px 14px rgba(0,0,0,.12);
}
.srm-front-head h2 { margin:0; color:#fff; font-weight:700; }
.srm-front-count { font-weight:600; opacity:.95; }

.srm-front-filters {
	display:flex; gap:10px; flex-wrap:wrap; background:#fff;
	padding:16px 24px; border-left:1px solid #eee; border-right:1px solid #eee;
}
.srm-front-filters input[type=text],
.srm-front-filters select {
	flex:1; min-width:160px; padding:9px 11px; border:1px solid #ccc; border-radius:6px; font-size:14px;
}
.srm-front-filters button {
	background:#0072ff; color:#fff; border:0; border-radius:6px; padding:9px 22px;
	cursor:pointer; font-weight:600;
}
.srm-front-filters button:hover { background:#005ad1; }

.srm-front-tablewrap {
	background:#fff; border-radius:0 0 10px 10px; padding:0 0 6px;
	border:1px solid #eee; border-top:0; overflow-x:auto;
	box-shadow:0 4px 14px rgba(0,0,0,.08);
}
.srm-front-table { width:100%; border-collapse:collapse; }
.srm-front-table thead th {
	background:#2c3e50; color:#fff; padding:11px 12px; font-size:12px;
	text-transform:uppercase; letter-spacing:.4px; white-space:nowrap; text-align:left;
}
.srm-front-table tbody td { padding:11px 12px; border-bottom:1px solid #eee; font-size:14px; }
.srm-front-table tbody tr:hover { background:#eef7ff; }
.srm-front-empty { text-align:center; color:#888; padding:34px !important; }

.srm-b { display:inline-block; padding:3px 10px; border-radius:12px; color:#fff; font-size:12px; font-weight:600; }
.srm-b:empty { display:none; }
.srm-b-blue { background:#2980b9; }
.srm-b-purple { background:#8e44ad; }
.srm-b-orange { background:#e67e22; }
.srm-b-green { background:#27ae60; }
.srm-b-teal { background:#16a085; }
.srm-b-navy { background:#243b55; }
