/* Basic styling for Eurosim SMS panel */
* {
	box-sizing: border-box;
}
body {
	margin: 0;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
	background: #f6f7f9;
	color: #1f2937;
}
.container {
	max-width: 860px;
	margin: 32px auto;
	padding: 0 16px;
}
h1 {
	font-size: 22px;
	margin: 0 0 16px;
}
section {
	margin-bottom: 24px;
}
.server-info .info-row {
	display: flex;
	gap: 8px;
}
.server-info .label {
	font-weight: 600;
}

.passphrase-section {
	border-left: 4px solid #f59e0b;
	background: #fffbeb;
}

.form-section {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	padding: 16px;
}
.form-row {
	display: flex;
	flex-direction: column;
	margin-bottom: 12px;
}
label {
	font-size: 14px;
	margin-bottom: 6px;
	color: #374151;
}
input[type='text'],
textarea {
	border: 1px solid #d1d5db;
	border-radius: 6px;
	padding: 10px 12px;
	font-size: 14px;
	outline: none;
}
input[type='text']:focus,
textarea:focus {
	border-color: #3b82f6;
	box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.form-actions {
	margin-top: 8px;
}
.btn {
	display: inline-block;
	background: #1f6feb;
	color: white;
	border: none;
	padding: 10px 14px;
	font-size: 14px;
	border-radius: 6px;
	cursor: pointer;
}
.btn:hover {
	background: #1b61d1;
}

.alert {
	margin-top: 12px;
	padding: 10px 12px;
	border-radius: 6px;
	font-size: 14px;
}
.alert.error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}
.alert.success {
	background: #ecfdf5;
	color: #065f46;
	border: 1px solid #a7f3d0;
}

.panel {
	background: white;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	overflow: hidden;
}
.panel + .panel {
	margin-top: 16px;
}
.panel-title {
	background: #f3f4f6;
	padding: 10px 12px;
	font-weight: 600;
	font-size: 14px;
}
.panel-content {
	padding: 12px;
	margin: 0;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
	font-size: 12px;
	white-space: pre-wrap;
	word-break: break-word;
}

.sms-table {
	width: 100%;
	border-collapse: collapse;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
	font-size: 13px;
}
.sms-table th,
.sms-table td {
	padding: 8px 10px;
	text-align: left;
	border-bottom: 1px solid #e5e7eb;
}
.sms-table th {
	background: #f9fafb;
	font-weight: 600;
	color: #374151;
}
.sms-table tr:hover {
	background: #f9fafb;
}
