body {
    /*background-color: skyblue;*/
}

/* Disable Bootstrap xxl breakpoint (1400px) */
@media (min-width: 1400px) and (max-width: 1699px) {
    .col-xxl-2 {
        flex: 0 0 auto !important;
        width: 25% !important;
    }
    .col-xxl-10 {
        flex: 0 0 auto !important;
        width: 75% !important;
    }
}

/* Custom breakpoint: xxl starts at 1700px instead of 1400px */
@media (min-width: 1700px) {
    .col-xxl-2 {
        flex: 0 0 auto !important;
        width: 16.66666667% !important;
    }
    .col-xxl-10 {
        flex: 0 0 auto !important;
        width: 83.33333333% !important;
    }
}

/* Search highlighting */
.search-highlight {
    background-color: #ffeb3b;
    color: #333;
    font-weight: 500;
    padding: 1px 2px;
    border-radius: 2px;
}


.diagram-container {
	padding-top: 2rem;
}

.diagram-tabs {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 1rem;
}

.diagram-tab {
	padding: 0.5rem 1.5rem;
	background: #f8f9fa;
	border: 1px solid #dee2e6;
	border-bottom: none;
	border-radius: 0.5rem 0.5rem 0 0;
	color: #6c757d;
}

.diagram-tab-active {
	background: white;
	color: #212529;
	border-color: #dee2e6;
	font-weight: 500;
}