/* RATEC Contact Form - Admin Panel Styles */

.ratec-cf-admin {
	padding: 20px 0;
}

/* Statistics Cards */
.ratec-cf-admin-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
	margin-bottom: 30px;
}

.stat-box {
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 30px;
	text-align: center;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.stat-box:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	border-color: #4a90e2;
}

.stat-box.unread {
	border-left: 4px solid #e74c3c;
}

.stat-number {
	font-size: 48px;
	font-weight: 700;
	color: #4a90e2;
	margin: 0;
}

.stat-box.unread .stat-number {
	color: #e74c3c;
}

.stat-label {
	font-size: 14px;
	color: #666666;
	margin-top: 10px;
	font-weight: 500;
}

/* Submissions Table */
.ratec-cf-submissions-table {
	margin-top: 20px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ratec-cf-submissions-table thead {
	background: #f5f7fa;
	border-top: 1px solid #e0e0e0;
	border-bottom: 2px solid #e0e0e0;
}

.ratec-cf-submissions-table thead th {
	padding: 16px 12px;
	font-weight: 600;
	color: #2c3e50;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	background: #f5f7fa;
}

.ratec-cf-submissions-table tbody tr {
	border-bottom: 1px solid #ecf0f1;
	transition: background-color 0.2s ease;
}

.ratec-cf-submissions-table tbody tr:hover {
	background-color: #f9fafb;
}

.ratec-cf-submissions-table tbody tr.unread {
	background-color: #fffbf0;
}

.ratec-cf-submissions-table tbody td {
	padding: 14px 12px;
	font-size: 13px;
	vertical-align: middle;
}

/* Column specific styles */
.status-col {
	width: 30px;
	text-align: center;
}

.unread-badge {
	font-size: 20px;
	color: #e74c3c;
	line-height: 1;
}

.name-col {
	font-weight: 600;
	color: #2c3e50;
	width: 150px;
}

.email-col {
	color: #4a90e2;
	width: 200px;
}

.email-col a {
	color: #4a90e2;
	text-decoration: none;
}

.email-col a:hover {
	text-decoration: underline;
}

.subject-col {
	color: #666;
	max-width: 250px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.date-col {
	width: 150px;
	color: #999;
	font-size: 12px;
}

.date-col .date {
	display: block;
	font-weight: 500;
	color: #666;
}

.date-col .time {
	display: block;
	font-size: 11px;
	color: #999;
}

.actions-col {
	width: 280px;
}

/* Action Buttons */
.actions-col .button {
	padding: 6px 12px;
	font-size: 12px;
	height: auto;
	margin-right: 6px;
	margin-bottom: 6px;
}

.actions-col .button-small {
	padding: 5px 10px;
	font-size: 11px;
	height: auto;
}

.actions-col .button-link-delete {
	color: #e74c3c;
}

.actions-col .button-link-delete:hover {
	color: #c0392b;
}

/* Message Details Page */
.ratec-cf-message-detail {
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	padding: 30px;
	margin-top: 20px;
}

.message-header {
	border-bottom: 2px solid #ecf0f1;
	padding-bottom: 20px;
	margin-bottom: 30px;
}

.message-header h2 {
	margin: 0 0 12px 0;
	color: #2c3e50;
	font-size: 28px;
}

.message-meta {
	margin: 8px 0;
	color: #666;
	font-size: 14px;
}

.message-meta strong {
	color: #2c3e50;
	font-weight: 600;
}

.message-date {
	margin: 8px 0;
	color: #999;
	font-size: 13px;
}

/* Message Info Table */
.message-info-table {
	width: 100%;
	margin-bottom: 30px;
	border-collapse: collapse;
}

.message-info-table tr {
	border-bottom: 1px solid #ecf0f1;
}

.message-info-table tr:last-child {
	border-bottom: none;
}

.message-info-table td {
	padding: 12px 0;
	font-size: 14px;
}

.message-info-table .label {
	font-weight: 600;
	color: #2c3e50;
	width: 120px;
}

.message-info-table .value {
	color: #666;
}

.message-info-table a {
	color: #4a90e2;
	text-decoration: none;
}

.message-info-table a:hover {
	text-decoration: underline;
}

/* Message Body */
.message-body {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 2px solid #ecf0f1;
}

.message-body h3 {
	margin: 0 0 15px 0;
	color: #2c3e50;
	font-size: 16px;
	font-weight: 600;
}

.message-text {
	background: #f9fafb;
	border-left: 4px solid #4a90e2;
	padding: 20px;
	border-radius: 4px;
	color: #333;
	line-height: 1.6;
	font-size: 14px;
	white-space: pre-wrap;
	word-wrap: break-word;
}

.message-text p {
	margin: 0 0 12px 0;
}

.message-text p:last-child {
	margin-bottom: 0;
}

/* Message Actions */
.message-actions {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #ecf0f1;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.message-actions .button {
	display: inline-block;
}

/* Settings Form */
.ratec-cf-settings-form .form-table {
	background: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	margin-top: 20px;
}

.ratec-cf-settings-form .form-table th,
.ratec-cf-settings-form .form-table td {
	padding: 20px;
	border-color: #ecf0f1;
}

.ratec-cf-settings-form .form-table th {
	background: #f9fafb;
	font-weight: 600;
	width: 200px;
}

.ratec-cf-settings-form .regular-text {
	width: 100%;
	max-width: 400px;
}

.ratec-cf-settings-form .description {
	color: #999;
	font-size: 13px;
	margin-top: 8px;
}

/* Admin Bar Notification */
.ab-notification {
	min-width: 18px;
	height: 18px;
	line-height: 18px;
	min-height: 18px;
	background: #e74c3c;
	color: #ffffff;
	border-radius: 9px;
	display: inline-block;
	text-align: center;
	font-size: 11px;
	font-weight: 600;
	margin-left: 6px;
}

/* Responsive Design */
@media (max-width: 782px) {
	.ratec-cf-admin-stats {
		grid-template-columns: 1fr;
	}

	.ratec-cf-submissions-table {
		font-size: 12px;
	}

	.ratec-cf-submissions-table thead th,
	.ratec-cf-submissions-table tbody td {
		padding: 10px 8px;
	}

	.name-col,
	.email-col,
	.subject-col,
	.date-col {
		width: auto;
	}

	.actions-col {
		width: 150px;
	}

	.actions-col .button {
		display: block;
		width: 100%;
		margin-bottom: 8px;
		margin-right: 0;
	}

	.message-info-table .label {
		width: 100px;
	}

	.message-header h2 {
		font-size: 22px;
	}

	.ratec-cf-message-detail {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.ratec-cf-admin-stats {
		grid-template-columns: 1fr;
	}

	.stat-box {
		padding: 20px;
	}

	.stat-number {
		font-size: 36px;
	}

	.ratec-cf-submissions-table {
		display: block;
		overflow-x: auto;
	}

	.message-actions {
		flex-direction: column;
	}

	.message-actions .button {
		width: 100%;
		display: block;
	}
}
