.nav-tabs-container {
	margin-top: 20px;
}

.nav {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	border-bottom: 1px solid #ddd;
	background-color: #f8f9fa;
    border-radius: 6px 6px 0 0;
}

.nav-item {
	padding: 6px;
}

.nav-link {
	text-decoration: none;
	color: #495057;
	padding: 12px 20px;
	display: inline-block;
	cursor: pointer;
	border: 1px solid transparent;
	border-bottom: none;
	background-color: transparent;
	transition: all 0.3s ease;
	font-weight: 500;
	border-radius: 6px;
	margin-right: 2px;
    font-family: Verdana,Arial,sans-serif;
}

.nav-link:hover {
	text-decoration: none;
	background-color: #e9ecef;
	color: #3B729F;
}

.nav-link.active {
	background-color: #88A4BC;
	color: #ffffff;
	border-color: #88A4BC;
	font-weight: 600;
	box-shadow: 0 2px 4px rgba(0,123,255,0.2);
}

.tab-content-container {
	padding: 20px;
	background-color: #ffffff;
	border: 1px solid #ddd;
	border-top: none;
	border-radius: 0 0 6px 6px;
}

.tab-pane {
	display: none;
}

.tab-pane.active {
	display: block;
} 

.map-preview-ins{
    padding: 10px;
}
#map-preview-area {
    width: 700px;
    min-height: 500px;
}

/* Embedding instructions styles */
.embedding-instructions {
    padding-top: 10px;
}

.embedding-instructions h3 {
    margin: 0 0 15px 0;
    font-size: 14px;
    font-weight: 600;
    color: #1d2327;
}

.embedding-steps {
    list-style-type: decimal;
    margin: 0;
    padding-left: 20px;
}

.embedding-steps li {
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Shortcode display styles */
.shortcode-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 5px;
}

.shortcode-display {
    background: #f6f7f7;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    padding: 2px 8px;
    font-family: Consolas, Monaco, monospace;
    font-size: 13px;
    line-height: 1.4;
}

.copy-button {
    background: #2271b1;
    border: 1px solid #2271b1;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    padding: 2px 8px;
    font-size: 12px;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.copy-button:hover {
    background: #135e96;
    border-color: #135e96;
}

.copy-success {
    color: #00a32a;
    margin-left: 8px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.copy-success.visible {
    opacity: 1;
}

/* File validation styles */
.mapdata-validation-error {
    border: 2px solid #d63638 !important;
    background-color: #fff5f5 !important;
}

.mapdata-validation-message {
    display: block;
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.4;
    background-color: #fff2f2;
    border: 1px solid #d63638;
    color: #d63638;
}

/* Disabled submit button styles */
input[type="submit"].disabled {
    background-color: #c3c4c7 !important;
    border-color: #c3c4c7 !important;
    color: #a7aaad !important;
    cursor: not-allowed !important;
    opacity: 0.6;
}

/* Hide individual delete buttons */
.button-danger {
    display: none;
}

/* Options dropdown styling */
.options-container {
    position: relative;
    display: inline-block;
}

.options-button {
    background-color: #e6e6e6;
    color: #333;
    border: 1px solid #6c757d;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    text-align: center;
    vertical-align: middle;
    transition: all 0.3s ease;
    margin-right: 2px;
    font-family: Verdana,Arial,sans-serif;
}

.options-button:hover {
    background-color: #5a6268;
    border-color: #5a6268;
}


.options-menu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    min-width: 120px;
    z-index: 1000;
}

.options-menu.show {
    display: block;
}

.options-item {
    display: block;
    width: 100%;
    padding: 8px 12px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    font-size: 13px;
}

.options-item:hover {
    background-color: #f0f0f0;
}

/* Hide delete button by default, show only when on map tabs */
.options-delete-map {
    display: none;
}