/* Main Styles for Jerosse Inventory Management System */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

header {
    margin-bottom: 30px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 15px;
}

h1 {
    color: #2c3e50;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h2 {
    color: #3498db;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
    padding-left: 10px;
}

.table {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.table th {
    background-color: #3498db;
    color: white;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #e6f2ff !important;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
    --bs-table-accent-bg: #e6f2ff !important;
} /* Light blue for alternate rows */
}

/* Additional specific selectors for tables */
table.table tbody tr:nth-of-type(odd) {
    background-color: #e6f2ff !important;  /* Light blue for alternate rows */
}

/* Bootstrap override */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: #e6f2ff !important;  /* Light blue for alternate rows */
}

.table tr:hover {
    background-color: #f1f9ff;
}

footer {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.navbar {
    border-radius: 5px;
    margin-top: 15px;
}

.nav-item .nav-link {
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-item .nav-link:hover {
    background-color: #e9f5ff;
}

.nav-item .nav-link.active {
    color: #fff;
    background-color: #3498db;
    font-weight: 700;
}

.alert {
    border-radius: 5px;
    border-left: 4px solid;
}

.alert-info {
    border-left-color: #3498db;
}