/* Lunchfish Custom Styles */
[data-bs-theme="dark"] body {
    background-color: #222;
    color: #e9ecef;
}

[data-bs-theme="light"] body {
    background-color: #fff;
    color: #333;
}

[data-bs-theme="dark"] .navbar, [data-bs-theme="dark"] .footer {
    background-color: #343a40 !important;
    color: #e9ecef;
}
[data-bs-theme="light"] .navbar, [data-bs-theme="light"] .footer {
    background-color: #f8f9fa !important;
    color: #212529;
}

/* Only set link color for dark mode. Let Bootstrap handle light mode by default. */
[data-bs-theme="dark"] a {
    color: #0dcaf0;
}
[data-bs-theme="dark"] a:hover {
    color: #66d9ff;
}
/*
[data-bs-theme="light"] a {
    color: #0d6efd;
}
[data-bs-theme="light"] a:hover {
    color: #0a58ca;
}
*/

[data-bs-theme="dark"] table {
    background-color: #23272b;
    color: #e9ecef;
}
[data-bs-theme="dark"] th, [data-bs-theme="dark"] td {
    background-color: #23272b;
    color: #e9ecef;
}
[data-bs-theme="dark"] tr {
    border-color: #343a40;
}
[data-bs-theme="dark"] .table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #2c3035;
}
[data-bs-theme="dark"] .table-hover > tbody > tr:hover {
    background-color: #343a40;
}

[data-bs-theme="dark"] .list-group-item {
    background-color: #23272b;
    color: #e9ecef;
}


.list-group-item.disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.footer {
    color: #adb5bd;
    font-size: 0.95em;
}

/* Add more custom styles as needed */

/* Hide restaurant address on small screens */
@media (max-width: 576px) {
  .restaurant-address {
    display: none !important;
  }
}
