.models-list {
    margin-top: 20px;
}

.model-item {
    margin: 10px 0;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.model-name {
    font-size: 1.2em;
    font-weight: bold;
}

.model-reference {
    margin-left: 10px;
    font-size: 0.9em;
}

.schematic-count {
    display: inline-block;
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8em;
    margin-left: 10px;
}

.schematics-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.schematic-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    width: 220px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.schematic-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.schematic-name {
    font-size: 1.1em;
    font-weight: bold;
    margin-bottom: 10px;
    min-height: 2.5em;
}

.schematic-image {
    max-width: 200px;
    height: auto;
    margin-bottom: 10px;
    border: 1px solid #eee;
}

.schematic-reference {
    margin: 5px 0;
    font-size: 0.9em;
}

.schematic-actions {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.items-link {
    display: inline-block;
    background: #2196F3;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9em;
}

.items-link:hover {
    background: #0b7dda;
}

.item-count {
    display: inline-block;
    background: #ff9800;
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8em;
    margin-left: 5px;
}

.count-badge {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.9em;
    margin-left: 10px;
}

.no-image {
    width: 200px;
    height: 150px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 0.9em;
    margin-bottom: 10px;
    border: 1px dashed #ddd;
}

.page-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.table-container {
    flex: 1;
}

.image-container {
    flex: 0 0 600px;
}

.schematic-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.no-image {
    width: 100%;
    height: 200px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    border: 1px dashed #ddd;
    border-radius: 5px;
}

.items-table {
    width: 100%;
    border-collapse: collapse;
}

.items-table th,
.items-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.items-table th {
    background-color: #f2f2f2;
}

.items-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.schematic-info {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.count-badge {
    display: inline-block;
    background: #4CAF50;
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.9em;
    margin-left: 10px;
}

.nla-price {
    color: #999;
    font-style: italic;
}

@media (max-width: 768px) {
    .page-container {
        flex-direction: column;
    }

    .image-container {
        flex: 0 0 auto;
    }
}

/* breadcrumbs */
.breadcrumbs {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 12px 0;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumbs .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.breadcrumbs a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumbs .separator {
    color: #6c757d;
    margin: 0 8px;
}

.breadcrumbs .current {
    color: #495057;
    font-weight: 500;
}

@media (max-width: 768px) {
    .breadcrumbs {
        padding: 8px 0;
        font-size: 13px;
    }
    
    .breadcrumbs .separator {
        margin: 0 5px;
    }
}









/* DivTable.com */
.divTable{
	display: table;
	width: 100%;
}
.divTableRow {
	display: table-row;
}
.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
}
.divTableCell, .divTableHead {
	border: none;
	display: table-cell;
	padding: 3px 10px;
}
.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
	font-weight: bold;
}
.divTableFoot {
	background-color: #EEE;
	display: table-footer-group;
	font-weight: bold;
}
.divTableBody {
	display: table-row-group;
}