/* Costco Gold Inventory - Dark Sidebar with Light Map */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow: hidden;
    touch-action: manipulation;
}

.hidden {
    display: none !important;
}

.app-container {
    display: flex;
    height: 100vh;
    width: 100vw;
}

/* Sidebar Styles - Dark Theme */
.sidebar {
    width: 400px;
    min-width: 400px;
    background: #0f0f0f;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #2a2a2a;
    color: #e0e0e0;
}

.sidebar-header {
    padding: 24px;
    border-bottom: 1px solid #2a2a2a;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 4px;
}

.tagline {
    font-size: 0.875rem;
    color: #808080;
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-btn {
    width: 36px;
    height: 36px;
    padding: 8px;
    background: #1a1a1a;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    cursor: pointer;
    color: #a0a0a0;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-btn:hover {
    background: #252525;
    border-color: #ffd700;
    color: #ffd700;
}

.menu-btn svg {
    width: 20px;
    height: 20px;
}

/* Menu Modal */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.menu-modal {
    background: #1a1a1a;
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    max-height: 80vh;
    margin: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid #2a2a2a;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.menu-header {
    padding: 20px 24px;
    border-bottom: 1px solid #2a2a2a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-title {
    color: #ffd700;
    font-size: 1.25rem;
    font-weight: 600;
}

.menu-close-btn {
    width: 32px;
    height: 32px;
    padding: 6px;
    background: transparent;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    cursor: pointer;
    color: #808080;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-close-btn:hover {
    background: #252525;
    border-color: #ef4444;
    color: #ef4444;
}

.menu-close-btn svg {
    width: 18px;
    height: 18px;
}

.menu-body {
    padding: 24px;
    overflow-y: auto;
}

.menu-placeholder {
    color: #808080;
    text-align: center;
    padding: 40px 20px;
}

.menu-section {
    background: #252525;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 16px;
}

.menu-section-title {
    color: #e0e0e0;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.menu-section-text {
    color: #808080;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.menu-btn-primary {
    display: inline-block;
    padding: 12px 20px;
    background: #ffd700;
    color: #0f0f0f;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

.menu-btn-primary:hover {
    background: #e6c200;
}

.menu-btn-slack {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #4A154B;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
}

.menu-btn-slack:hover {
    background: #611f64;
}

.slack-icon {
    width: 20px;
    height: 20px;
}

.menu-scroll-list {
    max-height: 150px;
    overflow-y: auto;
    background: #1a1a1a;
    border-radius: 8px;
    padding: 8px;
}

.menu-scroll-list::-webkit-scrollbar {
    width: 6px;
}

.menu-scroll-list::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.menu-scroll-list::-webkit-scrollbar-thumb {
    background: #3a3a3a;
    border-radius: 3px;
}

.menu-list-empty {
    color: #555;
    font-size: 0.85rem;
    text-align: center;
    padding: 20px;
    font-style: italic;
}

.menu-list-item {
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 4px;
    background: #252525;
}

.menu-list-item:last-child {
    margin-bottom: 0;
}

.menu-list-item-title {
    color: #e0e0e0;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.menu-list-item-subtitle {
    color: #666;
    font-size: 0.75rem;
}

.menu-list-item-timestamp {
    color: #888;
    font-size: 0.7rem;
    margin-top: 2px;
}

.menu-list-item.low-stock .menu-list-item-title {
    color: #fbbf24;
}

.menu-list-item.out-of-stock .menu-list-item-title {
    color: #999;
}

/* Purchase Profiles */
.profiles-list {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 8px;
    margin-bottom: 12px;
}

.profile-card {
    display: block;
    background: #252525;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 8px;
    border: 1px solid #333;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    text-decoration: none;
}

.profile-card:last-child {
    margin-bottom: 0;
}

.profile-card:hover {
    border-color: #ffd700;
    background: #2a2a2a;
}

.profile-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.profile-name {
    color: #e0e0e0;
    font-weight: 600;
    font-size: 0.9rem;
}

.profile-card-details {
    color: #888;
    font-size: 0.8rem;
}

.menu-btn-add-profile {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: transparent;
    color: #ffd700;
    border: 1px dashed #ffd700;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    width: 100%;
    justify-content: center;
}

.menu-btn-add-profile:hover {
    background: rgba(255, 215, 0, 0.1);
}

.menu-btn-add-profile svg {
    width: 16px;
    height: 16px;
}

.menu-footer {
    padding: 16px 24px;
    border-top: 1px solid #2a2a2a;
    text-align: center;
}

.menu-version {
    font-size: 0.75rem;
    color: #555;
}

.menu-last-update {
    font-size: 0.7rem;
    color: #666;
    margin-top: 4px;
}

/* Search Results Modal */
.search-results-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.search-results-modal {
    background: #1a1a1a;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    max-height: 85vh;
    margin: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid #2a2a2a;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.search-results-header {
    padding: 20px 24px;
    border-bottom: 1px solid #2a2a2a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-results-title {
    color: #ffd700;
    font-size: 1.25rem;
    font-weight: 600;
}

.search-results-subtitle {
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.05) 100%);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(34, 197, 94, 0.3);
    border-left: 4px solid #22c55e;
    text-align: center;
}

.search-results-close-btn {
    width: 32px;
    height: 32px;
    padding: 6px;
    background: transparent;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    cursor: pointer;
    color: #808080;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-results-close-btn:hover {
    background: #252525;
    border-color: #ef4444;
    color: #ef4444;
}

.search-results-close-btn svg {
    width: 18px;
    height: 18px;
}

.search-results-body {
    padding: 16px;
    overflow-y: auto;
    flex: 1;
}

.search-results-national {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 16px;
    margin-bottom: 12px;
    background: rgba(40, 40, 40, 0.5);
    border-radius: 8px;
    border: 1px solid #333;
}

.national-label {
    color: #666;
    font-size: 0.8rem;
    font-weight: 400;
}

.national-stat {
    font-size: 0.8rem;
    font-weight: 500;
}

.national-stat.gold {
    color: #b8a000;
}

.national-stat.silver {
    color: #909090;
}

.national-divider {
    color: #444;
    font-weight: 300;
}

.search-result-item {
    background: #252525;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
}

.search-result-item:hover {
    background: #2a2a2a;
    border-color: #ffd700;
}

.search-result-item:last-child {
    margin-bottom: 0;
}

.search-result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.search-result-name {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.search-result-distance {
    color: #ffd700;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    margin-left: 12px;
}

.search-result-address {
    color: #a0a0a0;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.search-result-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
}

.search-result-status .stock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.search-result-status.gold-only .stock-dot { background: #ffd700; }
.search-result-status.silver-only .stock-dot { background: #c0c0c0; }
.search-result-status.gold-and-silver .stock-dot { background: linear-gradient(135deg, #ffd700 50%, #c0c0c0 50%); }
.search-result-status.out-of-stock .stock-dot { background: #555; }

.search-result-status.gold-only { color: #ffd700; }
.search-result-status.silver-only { color: #c0c0c0; }
.search-result-status.gold-and-silver { color: #ffd700; }
.search-result-status.out-of-stock { color: #666; }

.search-result-products {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #3a3a3a;
}

.search-result-product {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    padding: 4px 0;
    color: #b0b0b0;
}

.search-result-product-price {
    color: #4ade80;
    font-weight: 500;
}

.search-results-empty {
    text-align: center;
    padding: 40px 20px;
    color: #808080;
}

.search-results-empty h3 {
    color: #e0e0e0;
    margin-bottom: 8px;
}

/* Search */
.search-container {
    padding: 16px 24px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid #2a2a2a;
}

.search-container input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    font-size: 0.9rem;
    background: #1a1a1a;
    color: #e0e0e0;
}

.search-container input::placeholder {
    color: #666;
}

.search-container input:focus {
    outline: none;
    border-color: #ffd700;
}

.btn-primary {
    padding: 12px 20px;
    background: #ffd700;
    color: #0f0f0f;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #e6c200;
}

/* Filters */
.filters {
    padding: 16px 24px;
    border-bottom: 1px solid #2a2a2a;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #a0a0a0;
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #ffd700;
    cursor: pointer;
}

.stats {
    display: none;
}

.mobile-last-update {
    display: none;
    color: #888;
    font-size: 0.75rem;
    margin-left: auto;
}

.stats span {
    color: #ffd700;
    font-weight: 600;
}

/* Legend */
.legend {
    padding: 12px 24px;
    border-bottom: 1px solid #2a2a2a;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #a0a0a0;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.gold-only {
    background: #ffd700;
}

.legend-dot.silver-only {
    background: #22c55e;
}

.legend-dot.gold-and-silver {
    background: linear-gradient(135deg, #ffd700 50%, #22c55e 50%);
}

.legend-dot.out-of-stock {
    background: #999;
    width: 8px;
    height: 8px;
}

/* Warehouse List */
.warehouse-list {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.warehouse-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    border: 1px solid #2a2a2a;
    transition: all 0.2s;
}

.warehouse-card:hover {
    border-color: #3a3a3a;
    transform: translateY(-2px);
}

.warehouse-card.selected {
    border-color: #ffd700;
    background: #1f1f1f;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.store-name {
    font-weight: 600;
    font-size: 1rem;
    color: #e0e0e0;
}

.store-number {
    font-size: 0.8rem;
    color: #666;
}

.store-address {
    font-size: 0.85rem;
    color: #808080;
    margin-bottom: 12px;
    line-height: 1.4;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 500;
}

.stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.stock-status.gold-only {
    color: #ffd700;
}

.stock-status.gold-only .stock-dot {
    background: #ffd700;
}

.stock-status.silver-only {
    color: #22c55e;
}

.stock-status.silver-only .stock-dot {
    background: #22c55e;
}

.stock-status.gold-and-silver {
    color: #22c55e;
}

.stock-status.gold-and-silver .stock-dot {
    background: linear-gradient(135deg, #ffd700 50%, #22c55e 50%);
}

.stock-status.out-of-stock {
    color: #999;
}

.stock-status.out-of-stock .stock-dot {
    background: #999;
    width: 6px;
    height: 6px;
}

.distance {
    font-size: 0.85rem;
    color: #808080;
}

/* Product List */
.product-list {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #2a2a2a;
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 0;
    font-size: 0.8rem;
}

.product-item:not(:last-child) {
    border-bottom: 1px solid #252525;
}

.product-name {
    color: #a0a0a0;
    flex: 1;
    padding-right: 12px;
}

.product-price {
    color: #ffd700;
    font-weight: 600;
    white-space: nowrap;
}

/* Sidebar Footer */
.sidebar-footer {
    padding: 16px 24px;
    border-top: 1px solid #2a2a2a;
    font-size: 0.8rem;
    color: #666;
}

.disclaimer {
    margin-top: 4px;
    font-size: 0.75rem;
    color: #555;
}

.version {
    margin-top: 2px;
    font-size: 0.65rem;
    color: #444;
}

/* Map Container - Light theme */
.map-container {
    flex: 1;
    position: relative;
}

#map {
    width: 100%;
    height: 100%;
}

/* Custom Marker Styles */
.custom-marker {
    background: transparent;
    border: none;
}

.marker-icon {
    width: 24px;
    height: 24px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    border: 3px solid;
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.marker-icon.gold-only {
    background: #ffd700;
    border-color: #b8960f;
}

.marker-icon.silver-only {
    background: #22c55e;
    border-color: #15803d;
}

.marker-icon.gold-and-silver {
    background: linear-gradient(135deg, #ffd700 50%, #22c55e 50%);
    border-color: #b8960f;
}

.marker-icon.out-of-stock {
    background: #ccc;
    border-color: #aaa;
    width: 10px;
    height: 10px;
    border-width: 1px;
}

/* Popup Styles */
.leaflet-popup-content-wrapper {
    background: #1a1a1a;
    color: #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.leaflet-popup-tip {
    background: #1a1a1a;
}

.leaflet-popup-content {
    margin: 16px;
}

.popup-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 4px;
    color: #e0e0e0;
}

.popup-address {
    font-size: 0.85rem;
    color: #808080;
    margin-bottom: 8px;
}

.popup-status {
    font-weight: 500;
    font-size: 0.9rem;
    padding: 4px 0;
}

.popup-status.gold-only {
    color: #ffd700;
}

.popup-status.silver-only {
    color: #22c55e;
}

.popup-status.gold-and-silver {
    color: #22c55e;
}

.popup-status.out-of-stock {
    color: #999;
}

.popup-products {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #2a2a2a;
}

.popup-product-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    padding: 4px 0;
}

.popup-product-name {
    color: #a0a0a0;
    flex: 1;
    padding-right: 8px;
}

.popup-product-price {
    color: #ffd700;
    font-weight: 500;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 40px 20px;
    color: #808080;
}

.no-results h3 {
    color: #e0e0e0;
    margin-bottom: 8px;
}

/* Scrollbar Styles */
.warehouse-list::-webkit-scrollbar {
    width: 8px;
}

.warehouse-list::-webkit-scrollbar-track {
    background: #1a1a1a;
}

.warehouse-list::-webkit-scrollbar-thumb {
    background: #3a3a3a;
    border-radius: 4px;
}

.warehouse-list::-webkit-scrollbar-thumb:hover {
    background: #4a4a4a;
}

/* ========================================
   AUTH MODAL STYLES - Dark Theme
   ======================================== */

.auth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(4px);
}

.auth-modal {
    background: #1a1a1a;
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
    margin: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid #2a2a2a;
    overflow: hidden;
}

.auth-header {
    padding: 28px 28px 20px;
    border-bottom: 1px solid #2a2a2a;
}

.auth-title {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.auth-subtitle {
    color: #808080;
    font-size: 0.9rem;
}

.auth-body {
    padding: 24px 28px 28px;
}

.auth-input-group {
    margin-bottom: 20px;
}

.auth-label {
    display: block;
    color: #a0a0a0;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.auth-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    font-size: 1rem;
    background: #0f0f0f;
    color: #e0e0e0;
    transition: border-color 0.2s;
}

.auth-input::placeholder {
    color: #555;
}

.auth-input:focus {
    outline: none;
    border-color: #ffd700;
}

.auth-btn {
    width: 100%;
    padding: 14px 24px;
    background: #ffd700;
    color: #0f0f0f;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.auth-btn:hover {
    background: #e6c200;
}

.auth-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid #0f0f0f;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.auth-alert {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.auth-alert-error {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.auth-alert-success {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.auth-sent-to {
    color: #808080;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.auth-email-display {
    color: #ffd700;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
}

.code-inputs {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.code-digit {
    width: 48px;
    height: 56px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    border: 1px solid #3a3a3a;
    border-radius: 8px;
    background: #0f0f0f;
    color: #e0e0e0;
    transition: border-color 0.2s;
}

.code-digit:focus {
    outline: none;
    border-color: #ffd700;
}

.auth-links {
    text-align: center;
    margin-top: 20px;
}

.auth-link {
    background: none;
    border: none;
    color: #808080;
    font-size: 0.875rem;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
}

.auth-link:hover {
    color: #ffd700;
}

.auth-link-divider {
    color: #3a3a3a;
    margin: 0 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .app-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        min-width: 100%;
        height: 60vh;
    }

    .map-container {
        height: 40vh;
    }

    .sidebar-footer {
        display: none;
    }

    .stats {
        display: none;
    }

    .sidebar-header {
        padding: 16px;
    }

    .search-container {
        padding: 12px 16px;
    }

    .filters {
        padding: 12px 16px;
    }

    .mobile-last-update {
        display: inline;
    }

    .legend {
        padding: 8px 16px;
    }

    .warehouse-list {
        padding: 12px;
    }

    .auth-modal {
        max-width: 100%;
        margin: 16px;
    }

    .code-digit {
        width: 42px;
        height: 50px;
        font-size: 1.25rem;
    }
}
