.dlocal-go-admin-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
	padding: 20px;
	background: linear-gradient(135deg, #1e3a5f 0%, #2d5a87 100%);
	border-radius: 8px;
}

.dlocal-go-admin-header img {
	width: 50px;
	height: 50px;
}

.dlocal-go-admin-header h2 {
	margin: 0;
	color: #fff;
	font-size: 24px;
	font-weight: 600;
}

.dlocal-go-admin-header p {
	margin: 5px 0 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 14px;
}

.dlocal-go-tabs {
	display: flex;
	gap: 0;
	border-bottom: 2px solid #ddd;
	margin-bottom: 0;
}

.dlocal-go-tab {
	padding: 12px 24px;
	background: #f5f5f5;
	border: 1px solid #ddd;
	border-bottom: none;
	border-radius: 8px 8px 0 0;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	color: #555;
	transition: all 0.2s ease;
	margin-right: 4px;
}

.dlocal-go-tab:hover {
	background: #e8e8e8;
	color: #333;
}

.dlocal-go-tab.active {
	background: #fff;
	color: #2271b1;
	border-color: #ddd;
	position: relative;
}

.dlocal-go-tab.active::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 2px;
	background: #fff;
}

.dlocal-go-tab-content {
	display: none;
	padding: 20px;
	background: #fff;
	border: 1px solid #ddd;
	border-top: none;
	border-radius: 0 0 8px 8px;
}

.dlocal-go-tab-content.active {
	display: block;
}

.dlocal-go-tab-content table.form-table {
	margin: 0;
}

.dlocal-go-tab-content table.form-table th {
	padding-left: 0;
}

.dlocal-go-section-title {
	font-size: 16px;
	font-weight: 600;
	color: #1d2327;
	margin: 20px 0 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}

.dlocal-go-section-title:first-child {
	margin-top: 0;
}

.dlocal-go-environment-badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	margin-left: 10px;
}

.dlocal-go-environment-badge.sandbox {
	background: #fff3cd;
	color: #856404;
}

.dlocal-go-environment-badge.production {
	background: #d4edda;
	color: #155724;
}

.dlocal-go-info-box {
	background: #f0f6fc;
	border-left: 4px solid #2271b1;
	padding: 12px 16px;
	margin: 15px 0;
	border-radius: 0 4px 4px 0;
}

.dlocal-go-info-box p {
	margin: 0;
	color: #1d2327;
}

.dlocal-go-info-box code {
	background: #e5e5e5;
	padding: 2px 6px;
	border-radius: 3px;
}

.dlocal-go-faq-link {
	margin-top: 20px;
	padding-top: 15px;
	border-top: 1px solid #eee;
}

.dlocal-go-faq-link a {
	color: #2271b1;
	text-decoration: none;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

.dlocal-go-faq-link a:hover {
	color: #135e96;
	text-decoration: underline;
}

.dlocal-go-dashboard-link {
	margin: 10px 0 15px;
}

.dlocal-go-dashboard-link a {
	color: #2271b1;
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
}

.dlocal-go-dashboard-link a:hover {
	color: #135e96;
	text-decoration: underline;
}