.logo {
    max-width: 200px; /* Adjust size */
    height: auto;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
}
.table-responsive {
    overflow-x: auto;
}
@media (max-width: 576px) {
    th, td {
        font-size: 0.8rem;
    }
}

.spec-list p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem; /* Tighter spacing */
}

.spec-list strong {
    flex: 0 0 150px; /* Fixed width for labels */
    text-align: right;
    padding-right: 10px;
}

.spec-list span {
    flex: 1;
    text-align: left;
}

.stat-box {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 20px;
    flex: 1 1 200px;           /* Makes boxes grow equally */
    min-width: 200px;
    max-width: 280px;
    box-sizing: border-box;
}
