/* ============================================================
   GLOBAL
   ============================================================ */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #000;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ============================================================
   SIDEBAR
   ============================================================ */

.sidebar {
    width: 200px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    border-right: 1px solid #ccc;
    background: #fff;
    padding-top: 20px;
    box-sizing: border-box;
}

.logo-container {
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
}

.logo-img {
    width: 140px;
    max-width: 140px;
}

/* Sidebar navigation links */

.nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 10px;
}

.nav-link {
    padding: 6px 12px;
    font-size: 15px;
    border-left: 4px solid transparent;
}

.nav-link:hover {
    background: #f5f5f5;
}

.nav-link.active {
    border-left-color: #000;
    font-weight: bold;
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */

.main-content {
    margin-left: 200px;
    padding: 20px 30px;
    box-sizing: border-box;
    min-height: 100vh;
}

/* ============================================================
   SEARCH BAR
   ============================================================ */

.search-wrapper {
    margin-bottom: 20px;
}

.search-input {
    width: 100%;
    font-size: 16px;
    padding: 6px 8px;
    border: 1px solid #ccc;
    outline: none;
}

/* ============================================================
   TITLES
   ============================================================ */

.category-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
}

/* Search section title (e.g. "Headphones") */
.search-section-title {
    font-size: 15px;
    margin-bottom: 10px;
    font-weight: bold;
}

/* ============================================================
   PRODUCT TABLES
   Minimalist style matching design spec
   ============================================================ */

.product-table {
    border-collapse: collapse;
    border: none;
    width: auto;
}

.product-table th,
.product-table td {
    padding: 4px 6px;
    font-size: 14px;
}

/* Headers */
.product-table th {
    font-weight: bold;
    border-bottom: 1px solid #000;
}

/* Horizontal row separators only */
.product-table td {
    border-bottom: 1px solid #ddd;
}

/* No vertical lines at all */
.product-table td,
.product-table th {
    border-right: none;
}

/* Remove left padding on model column */
.product-table td:first-child,
.product-table th:first-child {
    padding-left: 0;
}

/* No row hover effect (as per spec) */
.product-table tr:hover {
    background: none;
}

/* Store link styling */
.store-link {
    color: #000;
}
.store-link:active {
    color: orange;
}

/* Favorite star column */
.favorite-placeholder {
    text-align: center;
    width: 24px;
}

/* ============================================================
   DATE COLUMN COLORS
   ============================================================ */

.date-green {
    color: #007f00;
    font-weight: bold;
}

.date-black {
    color: #000;
}

.date-grey {
    color: #999;
}

.date-archived {
    color: #999;
    font-style: italic;
}

/* ============================================================
   SEARCH RESULTS
   ============================================================ */

.search-section {
    margin-top: 40px;
}

.no-results {
    margin-top: 20px;
    font-size: 16px;
}