.oikkotm_settings_section_title{
    margin-bottom: 40px;
}
#oikkotm_node_signaling_server,#oikkotm_express_turn_url{
    height: 30px;
}
/* Reset and Base */
.oikko-settings-wrap * {
	box-sizing: border-box;
}

.oikko-settings-wrap {
	max-width: 1400px;
	margin: 20px 0;
	padding: 0 20px;
}

/* Header */
.oikko-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #ffffff;
	padding: 20px 25px;
	margin: 0 0 30px 0;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	border-left: 4px solid #2271b1;
}

.oikko-header-left {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}

.oikko-title {
	font-size: 22px;
	font-weight: 600;
	color: #1d2327;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.oikko-title .dashicons {
	font-size: 28px;
	width: 28px;
	height: 28px;
	color: #2271b1;
}

.oikko-version {
	background: #f0f6fc;
	color: #2271b1;
	padding: 3px 12px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
}

/* Donate Button */
.oikko-donate-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #e74c3c;
	color: #ffffff !important;
	padding: 8px 20px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
}

.oikko-donate-btn:hover {
	background: #c0392b;
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.oikko-donate-btn .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
	color: #ffffff;
}

/* Grid Layout */
.oikko-settings-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 30px;
	margin-bottom: 0;
}

@media (max-width: 1200px) {
	.oikko-settings-grid {
		grid-template-columns: 1fr;
	}
}

/* Cards */
.oikko-card {
	background: #ffffff;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	margin-bottom: 25px;
	overflow: hidden;
}

.oikko-card-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 22px;
	background: #f8f9fa;
	border-bottom: 1px solid #e5e7eb;
}

.oikko-card-header .dashicons {
	font-size: 22px;
	width: 22px;
	height: 22px;
	color: #2271b1;
}

.oikko-card-header h2 {
	margin: 0;
	font-size: 17px;
	font-weight: 600;
	color: #1d2327;
}

.oikko-card-body {
	padding: 22px 25px;
}

/* Sidebar Cards */
.oikko-sidebar-card .oikko-card-header {
	background: #fafafa;
}

.oikko-sidebar-card .oikko-card-body {
	padding: 18px 22px;
}

.oikko-sidebar-card p {
	margin: 0 0 15px 0;
	color: #50575e;
	line-height: 1.6;
	font-size: 13px;
}

/* Donate Button Large */
.oikko-donate-btn-large {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #e74c3c;
	color: #ffffff !important;
	padding: 12px 28px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	transition: all 0.3s ease;
	width: 100%;
	justify-content: center;
	border: none;
	cursor: pointer;
}

.oikko-donate-btn-large:hover {
	background: #c0392b;
	color: #ffffff !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.oikko-donate-btn-large .dashicons {
	font-size: 18px;
	width: 18px;
	height: 18px;
	color: #ffffff;
}

/* Quick Links */
.oikko-quick-links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.oikko-quick-links li {
	margin-bottom: 8px;
}

.oikko-quick-links li:last-child {
	margin-bottom: 0;
}

.oikko-quick-links a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 15px;
	background: #f8f9fa;
	border-radius: 6px;
	text-decoration: none;
	color: #1d2327;
	transition: all 0.3s ease;
}

.oikko-quick-links a:hover {
	background: #e5e7eb;
	transform: translateX(5px);
}

.oikko-quick-links .dashicons {
	font-size: 16px;
	width: 16px;
	height: 16px;
	color: #2271b1;
}

/* Shortcode */
.oikko-shortcode {
	display: block;
	background: #1d2327;
	color: #f0f6fc;
	padding: 12px 20px;
	border-radius: 6px;
	font-size: 14px;
	font-family: 'Courier New', monospace;
	text-align: center;
	margin-top: 10px;
}

/* Field Groups */
.oikko-field-group {
	margin-bottom: 18px;
	padding-bottom: 18px;
	border-bottom: 1px solid #f0f0f0;
}

.oikko-field-group:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.oikko-field-group-title {
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 6px;
	color: #1d2327;
}

.oikko-field-group-title small {
	font-weight: 400;
	font-size: 12px;
	color: #787c82;
	display: block;
	margin-top: 3px;
}

.oikko-field-group input[type="text"],
.oikko-field-group input[type="url"],
.oikko-field-group input[type="password"],
.oikko-field-group select {
	width: 100%;
	max-width: 450px;
	padding: 8px 12px;
	border: 1px solid #d5d7d9;
	border-radius: 4px;
	transition: all 0.3s ease;
	background: #ffffff;
}

.oikko-field-group input[type="text"]:focus,
.oikko-field-group input[type="url"]:focus,
.oikko-field-group input[type="password"]:focus,
.oikko-field-group select:focus {
	border-color: #2271b1;
	box-shadow: 0 0 0 1px #2271b1;
	outline: none;
}

/* Logo Field */
.oikko-logo-field img {
	display: block;
	margin-bottom: 12px;
	max-width: 120px;
	height: auto;
	border-radius: 4px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.oikko-logo-field .button {
	margin-right: 8px;
}

/* Toggle Switch */
.oikko-toggle-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
}

.oikko-toggle {
	position: relative;
	display: inline-block;
	width: 48px;
	height: 24px;
	flex-shrink: 0;
}

.oikko-toggle input {
	opacity: 0;
	width: 0;
	height: 0;
}

.oikko-toggle .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: .3s;
	border-radius: 24px;
}

.oikko-toggle .slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: .3s;
	border-radius: 50%;
}

.oikko-toggle input:checked+.slider {
	background-color: #2271b1;
}

.oikko-toggle input:checked+.slider:before {
	transform: translateX(24px);
}

.oikko-toggle-label {
	font-size: 13px;
	color: #3c434a;
}

/* Checkbox with Label */
.oikko-checkbox-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
}

.oikko-checkbox-wrap input[type="checkbox"] {
	width: 16px;
	height: 16px;
	margin: 0;
	border-radius: 3px;
	border: 2px solid #d5d7d9;
	transition: all 0.3s ease;
	cursor: pointer;
}

.oikko-checkbox-wrap input[type="checkbox"]:checked {
	background-color: #2271b1;
	border-color: #2271b1;
}

.oikko-checkbox-wrap span {
	font-size: 13px;
	color: #3c434a;
}

/* Submit Button */

.oikko-submit-wrap .button-primary {
	font-size: 15px;
	padding: 8px 35px;
	height: auto;
	border-radius: 50px;
	transition: all 0.3s ease;
}

.oikko-submit-wrap .button-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(34, 113, 177, 0.3);
}

/* Code blocks in Call Settings */
.oikko-card-body ol {
	margin: 8px 0 0 20px;
	color: #3c434a;
	padding: 0;
}

.oikko-card-body ol li {
	margin-bottom: 6px;
	line-height: 1.6;
	font-size: 13px;
}

.oikko-card-body code {
	background: #1d2327;
	color: #f0f6fc;
	padding: 3px 10px;
	border-radius: 4px;
	font-size: 12px;
	display: inline-block;
	margin: 2px 0;
	word-break: break-all;
}

/* Responsive */
@media (max-width: 782px) {
	.oikko-settings-wrap {
		padding: 0 10px;
	}

	.oikko-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
		padding: 15px 20px;
	}

	.oikko-header-right {
		width: 100%;
	}

	.oikko-donate-btn {
		width: 100%;
		justify-content: center;
	}

	.oikko-card-header {
		padding: 14px 18px;
	}

	.oikko-card-body {
		padding: 18px;
	}

	.oikko-field-group input[type="text"],
	.oikko-field-group input[type="url"],
	.oikko-field-group input[type="password"],
	.oikko-field-group select {
		max-width: 100%;
	}

	.oikko-title {
		font-size: 18px;
	}

	.oikko-title .dashicons {
		font-size: 22px;
		width: 22px;
		height: 22px;
	}
}

@media (max-width: 480px) {
	.oikko-header-left {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.oikko-card-body ol {
		margin-left: 15px;
	}

	.oikko-card-body code {
		font-size: 11px;
		word-break: break-all;
	}
}