/* SmartSchedule - iOS Notes App Style */

:root {
    --ios-bg: #ffffff;
    --ios-list-bg: #f2f2f7;
    --ios-text: #000000;
    --ios-text-secondary: #8e8e93;
    --ios-separator: #c6c6c8;
    --ios-blue: #007aff;
    --ios-green: #34c759;
    --ios-orange: #ff9500;
    --ios-red: #ff3b30;
    --ios-hover: #e5e5ea;
    --ios-selected: #d1d1d6;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-color: var(--ios-list-bg);
    color: var(--ios-text);
    font-size: 17px;
    line-height: 1.47059;
    letter-spacing: -0.022em;
    -webkit-tap-highlight-color: transparent;
    /* PWA fullscreen support */
    overflow-x: hidden;
    overscroll-behavior: none;
    /* Prevent pull-to-refresh on mobile */
    overscroll-behavior-y: contain;
}

/* Navigation - iOS Style */
.navbar {
    background-color: var(--ios-bg) !important;
    border-bottom: 0.5px solid var(--ios-separator);
    padding: 0;
    min-height: 44px;
    box-shadow: none !important;
}

.navbar .container-fluid {
    padding: 0 16px;
}

.navbar-brand {
    font-size: 17px;
    font-weight: 400;
    color: var(--ios-text) !important;
    letter-spacing: -0.022em;
    padding: 12px 0;
}

.nav-link {
    font-size: 17px;
    color: var(--ios-text) !important;
    padding: 12px 16px !important;
    font-weight: 400;
    border-radius: 0;
    transition: background-color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
    background-color: var(--ios-hover);
}

.nav-link.active {
    background-color: transparent;
    font-weight: 600;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--ios-blue);
}

.dropdown-menu {
    background: var(--ios-bg);
    border: 0.5px solid var(--ios-separator);
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    font-size: 17px;
    overflow: hidden;
}

.dropdown-item {
    padding: 12px 16px;
    color: var(--ios-text);
    font-size: 17px;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--ios-hover);
    color: var(--ios-text);
}

/* Main Container - iOS Style */
.content-area {
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: var(--ios-list-bg);
}

/* Page Header - iOS Style */
.page-header {
    background: var(--ios-bg);
    padding: 12px 16px;
    border-bottom: 0.5px solid var(--ios-separator);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
}

.page-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--ios-text);
    margin: 0;
    letter-spacing: 0.013em;
}

/* Buttons - iOS Style */
.btn {
    background: var(--ios-blue);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    padding: 10px 16px;
    cursor: pointer;
    transition: opacity 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.btn:hover {
    opacity: 0.8;
}

.btn:active {
    opacity: 0.6;
    transform: scale(0.98);
}

.btn-sm {
    padding: 8px 14px;
    font-size: 15px;
    font-weight: 400;
    border-radius: 8px;
}

.btn-secondary,
.btn-outline-secondary {
    background: transparent;
    color: var(--ios-blue);
    border: none;
}

.btn-secondary:hover {
    background: var(--ios-hover);
    color: var(--ios-blue);
}

.btn-success {
    background: var(--ios-green);
}

.btn-danger {
    background: var(--ios-red);
}

/* Tables - iOS Notes List Style */
.table {
    width: 100%;
    background: var(--ios-bg);
    border-collapse: separate;
    border-spacing: 0;
    font-size: 17px;
}

.table thead {
    display: table-header-group;
}

.table tbody tr {
    background: var(--ios-bg);
    border-top: 0.5px solid var(--ios-separator);
    border-bottom: 0.5px solid rgba(198, 198, 200, 0.6);
    transition: background-color 0.15s ease;
    cursor: pointer;
}

.table tbody tr:first-child {
    border-top: none;
}

.table tbody tr:hover {
    background-color: var(--ios-hover);
}

.table tbody tr:active {
    background-color: var(--ios-selected);
}

.table td {
    padding: 12px 16px;
    vertical-align: middle;
    border: none;
    font-size: 17px;
    color: var(--ios-text);
}

.table td:first-child {
    font-weight: 400;
}

/* Forms - iOS Style */
.form-control,
.form-select {
    background: transparent;
    border: none;
    border-bottom: 0.5px solid transparent;
    border-radius: 0;
    padding: 0;
    font-size: 17px;
    color: var(--ios-text);
    transition: border-color 0.2s ease;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.form-control:focus,
.form-select:focus {
    border-bottom-color: var(--ios-blue);
    outline: none;
    box-shadow: none;
}

.form-select {
    cursor: pointer;
    background-image: none;
    padding-right: 0;
    position: relative;
}

.form-select:hover {
    border-bottom-color: var(--ios-separator);
}

.editable-select select,
.form-select {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 17px;
    color: var(--ios-text);
    cursor: pointer;
    min-width: auto;
    appearance: none;
    -webkit-appearance: none;
}

.editable-select select:focus,
.form-select:focus {
    border: none;
    outline: none;
}

.form-label {
    font-weight: 400;
    color: var(--ios-text-secondary);
    font-size: 13px;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: -0.08em;
}

/* Dropdowns - Completely Invisible */
select.form-select,
.editable-select select {
    border: none !important;
    background: transparent !important;
    color: var(--ios-text);
    font-size: 17px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: none !important;
    padding: 0;
}

select.form-select:hover,
.editable-select select:hover {
    opacity: 0.7;
}

select.form-select:focus,
.editable-select select:focus {
    outline: none;
    opacity: 1;
}

/* Bullet Buttons - iOS Style */
.bullet-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: var(--ios-text);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.bullet-btn i {
    display: block;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.bullet-btn:hover {
    opacity: 0.8;
}

.bullet-btn:active {
    opacity: 0.6;
    transform: scale(0.95);
}

/* Inline Editing */
.editable {
    cursor: text;
    padding: 2px 4px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.editable:hover {
    background-color: var(--ios-hover);
}

.editable input {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--ios-blue);
    background: transparent;
    padding: 2px 0;
    font-size: 17px;
    color: var(--ios-text);
    font-family: inherit;
}

.editable input:focus {
    outline: none;
}

/* Badges - iOS Style */
.badge {
    font-weight: 400;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 13px;
    background: transparent;
    color: var(--ios-text-secondary);
}

.bg-primary { background: var(--ios-blue) !important; color: white !important; }
.bg-success { background: var(--ios-green) !important; color: white !important; }
.bg-warning { background: var(--ios-orange) !important; color: white !important; }
.bg-danger { background: var(--ios-red) !important; color: white !important; }
.bg-info { background: var(--ios-text-secondary) !important; color: white !important; }

/* Stats - iOS Style */
.stats-container {
    background: var(--ios-bg);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0;
    margin: 0;
    border-top: 0.5px solid var(--ios-separator);
    border-bottom: 0.5px solid var(--ios-separator);
    margin-bottom: 16px;
}

.stat-item {
    padding: 16px;
    border-right: 0.5px solid var(--ios-separator);
    text-align: center;
}

.stat-item:last-child {
    border-right: none;
}

.stat-label {
    font-size: 13px;
    color: var(--ios-text-secondary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: -0.08em;
}

.stat-value {
    font-size: 28px;
    font-weight: 600;
    color: var(--ios-text);
    letter-spacing: -0.033em;
}

/* Modal - iOS Sheet Style */
.modal-content {
    background: var(--ios-bg);
    border: none;
    border-radius: 14px 14px 0 0;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    margin-top: auto;
}

.modal-dialog {
    margin: 0;
    max-width: 100%;
    height: auto;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
}

.modal.show .modal-dialog {
    transform: translateY(0);
}

.modal-header {
    border-bottom: 0.5px solid var(--ios-separator);
    padding: 16px;
    border-radius: 14px 14px 0 0;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--ios-text);
    letter-spacing: -0.022em;
}

.modal-body {
    padding: 16px;
}

.modal-footer {
    border-top: 0.5px solid var(--ios-separator);
    padding: 16px;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.btn-close {
    filter: opacity(0.4);
}

/* Handover Popup - iOS Alert Style */
.handover-popup-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease;
}

.handover-popup {
    background: var(--ios-bg);
    border-radius: 14px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 270px;
    width: calc(100% - 40px);
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.handover-popup h5 {
    font-size: 17px;
    font-weight: 600;
    padding: 16px 16px 8px;
    margin: 0;
    letter-spacing: -0.022em;
}

.handover-popup p {
    font-size: 13px;
    color: var(--ios-text-secondary);
    padding: 0 16px 16px;
    margin: 0;
}

.handover-popup-buttons {
    border-top: 0.5px solid var(--ios-separator);
    display: flex;
    flex-direction: column;
}

.handover-popup-buttons button {
    border-radius: 0;
    border: none;
    border-bottom: 0.5px solid var(--ios-separator);
    padding: 16px;
    font-size: 17px;
    font-weight: 400;
    background: transparent;
    color: var(--ios-blue);
}

.handover-popup-buttons button:last-child {
    border-bottom: none;
}

.handover-popup-buttons button:hover {
    background: var(--ios-hover);
}

.handover-popup-buttons .btn-secondary {
    color: var(--ios-red);
    font-weight: 600;
}

/* Toast */
.toast {
    background: var(--ios-bg);
    border: 0.5px solid var(--ios-separator);
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.toast-body {
    color: var(--ios-text);
    font-size: 17px;
    padding: 12px 16px;
}

/* Progress Bars */
.progress {
    background: var(--ios-list-bg);
    border-radius: 2px;
    height: 2px;
    overflow: hidden;
}

.progress-bar {
    background: var(--ios-blue);
    border-radius: 2px;
}

/* Remove all card styling */
.card, .card-body, .card-header, .card-footer {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
}

.shadow-sm, .shadow, .shadow-lg {
    box-shadow: none !important;
}

.border-0 {
    border: none !important;
}

/* Footer */
html {
    height: 100%;
    overflow: hidden;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
}

.content-area {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

footer {
    background: var(--ios-bg) !important;
    border-top: 0.5px solid var(--ios-separator);
    margin-top: auto;
    padding: 16px;
    position: relative;
    z-index: 1;
    width: 100%;
    flex-shrink: 0;
}

footer small {
    color: var(--ios-text-secondary);
    font-size: 13px;
}

/* Mobile footer spacing */
@media (max-width: 768px) {
    footer {
        padding-bottom: calc(16px + env(safe-area-inset-bottom));
        margin-bottom: calc(70px + env(safe-area-inset-bottom));
        position: relative;
    }
}

/* Links */
a {
    color: var(--ios-blue);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
    text-decoration: none;
}

/* Search Input */
#searchInput {
    background: var(--ios-bg);
    border: none;
    border-bottom: 0.5px solid var(--ios-separator);
    padding: 12px 16px;
    font-size: 17px;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
}

#searchInput:focus {
    border-bottom-color: var(--ios-blue);
    outline: none;
}

/* Date Input */
input[type="date"] {
    border: none;
    border-bottom: 0.5px solid transparent;
    background: transparent;
    padding: 0;
    font-size: 17px;
    color: var(--ios-text);
    cursor: pointer;
    font-family: inherit;
}

input[type="date"]:focus {
    border-bottom-color: var(--ios-blue);
    outline: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.4;
    cursor: pointer;
}

input[type="date"]:hover::-webkit-calendar-picker-indicator {
    opacity: 0.7;
}

/* Filters Section */
.filters-section {
    background: var(--ios-bg);
    padding: 16px;
    border-top: 0.5px solid var(--ios-separator);
    border-bottom: 0.5px solid var(--ios-separator);
    margin-bottom: 0;
}

/* Table Row Status */
.table-success {
    background-color: rgba(52, 199, 89, 0.05) !important;
}

/* Remove table-light */
.table-light {
    background: transparent !important;
}

/* Task rows - thinner separator like iOS Notes */
#taskTable tbody tr {
    border-bottom: 0.5px solid rgba(198, 198, 200, 0.6) !important;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ios-bg);
    border-top: 0.5px solid var(--ios-separator);
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    align-items: center;
    justify-content: space-around;
    height: calc(60px + env(safe-area-inset-bottom));
    max-height: calc(60px + env(safe-area-inset-bottom));
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex: 1;
    justify-content: center;
    position: relative;
}

.mobile-bottom-nav > div:has(.bottom-nav-add-btn) {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    position: relative;
    margin: 0;
    padding: 0;
    background: transparent;
    overflow: visible;
    z-index: 1001;
}

/* Alternative selector for browsers that don't support :has() */
.mobile-bottom-nav > div[style*="bottom-nav-add-btn"],
.mobile-bottom-nav > div[id="mobileAddTaskBtn"] {
    flex: 0 0 auto !important;
    width: 56px !important;
    height: 56px !important;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    overflow: visible !important;
    z-index: 1001 !important;
    box-shadow: none !important;
    border: none !important;
}

/* Remove any visible elements below + button */
.mobile-bottom-nav > div:has(.bottom-nav-add-btn)::after,
.mobile-bottom-nav > div[style*="bottom-nav-add-btn"]::after {
    display: none !important;
}

.bottom-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 8px;
    text-decoration: none;
    color: var(--ios-text-secondary);
    position: relative;
    transition: color 0.2s ease;
    border: none;
    background: transparent;
    width: 100%;
    cursor: pointer;
    min-height: 44px;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-focus-ring-color: transparent;
    box-shadow: none !important;
}

.bottom-nav-item:focus,
.bottom-nav-item:active,
.bottom-nav-item:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    -webkit-tap-highlight-color: transparent;
}

.bottom-nav-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--ios-blue);
    color: white;
    border: none;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
    position: absolute;
    left: 50%;
    top: -8px;
    transform: translateX(-50%);
    z-index: 10;
}

.bottom-nav-add-btn:active {
    transform: translateX(-50%) scale(0.95);
    box-shadow: 0 1px 4px rgba(0, 122, 255, 0.2);
}

.bottom-nav-add-btn:focus,
.bottom-nav-add-btn:focus-visible {
    outline: none !important;
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3) !important;
}

/* Floating Add Button (All Pages) */
.floating-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--ios-blue);
    color: white;
    border: none;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: fixed;
    bottom: calc(80px + env(safe-area-inset-bottom));
    right: 20px;
    z-index: 999;
}

.floating-add-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 122, 255, 0.5);
}

.floating-add-btn:active {
    transform: scale(0.95);
    box-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
}

.floating-add-btn:focus,
.floating-add-btn:focus-visible {
    outline: none !important;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.4) !important;
}

/* Adjust position on mobile to account for bottom nav */
@media (max-width: 768px) {
    .floating-add-btn {
        bottom: calc(70px + env(safe-area-inset-bottom));
        right: 16px;
    }
}

.bottom-nav-item i {
    font-size: 24px;
    display: block;
}

.bottom-nav-item.active {
    color: var(--ios-blue);
}

.bottom-nav-item.active i {
    color: var(--ios-blue);
}

.bottom-nav-badge {
    position: absolute;
    top: 2px;
    right: 20%;
    background-color: var(--ios-red);
    color: white;
    border-radius: 10px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--ios-bg);
}

/* Responsive */
@media (max-width: 768px) {
    /* Hide top navbar on mobile */
    .navbar {
        display: none !important;
    }
    
    /* Show bottom navigation */
    .mobile-bottom-nav {
        display: flex !important;
    }
    
    /* Add padding to main content for bottom nav */
    main {
        padding-bottom: calc(70px + env(safe-area-inset-bottom)) !important;
        min-height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    }
    
    body {
        padding-bottom: 0;
        padding-top: env(safe-area-inset-top);
    }
    
    .content-area {
        padding: 0;
        padding-bottom: calc(70px + env(safe-area-inset-bottom));
    }
    
    /* Fix sticky headers to not overlap with bottom nav */
    div[style*="position: sticky"] {
        z-index: 998 !important;
        top: env(safe-area-inset-top) !important;
    }
    
    /* Fix dropdown menus above bottom nav */
    .dropdown-menu {
        z-index: 1001 !important;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    /* Fix modals */
    .modal {
        z-index: 1050 !important;
    }
    
    .modal-backdrop {
        z-index: 1040 !important;
        background-color: rgba(0, 0, 0, 0.5) !important;
    }
    
    /* Ensure backdrop is removed after modal closes */
    .modal-backdrop.show {
        opacity: 0.5 !important;
    }
    
    /* Remove backdrop when modal is hidden */
    body:not(.modal-open) .modal-backdrop,
    .modal-backdrop.fade:not(.show) {
        display: none !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    /* Remove any lingering backdrops */
    body.modal-open ~ .modal-backdrop,
    html:not(.modal-open) .modal-backdrop {
        display: none !important;
    }
    
    /* Ensure no content overlaps bottom nav */
    table,
    .table {
        margin-bottom: calc(70px + env(safe-area-inset-bottom));
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .table {
        font-size: 17px;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item:nth-child(2) {
        border-right: none;
    }
    
    /* Increase task column width on mobile */
    #taskTable colgroup col:first-child {
        width: 75% !important;
    }
    
    #taskTable colgroup col:last-child {
        width: 25% !important;
    }
    
    /* Adjust table padding for mobile */
    #taskTable td:first-child {
        padding: 8px 12px !important;
    }
    
    #taskTable td:last-child {
        padding: 8px 8px !important;
        font-size: 13px !important;
    }
    
    #taskTable th:first-child {
        padding: 8px 12px !important;
    }
    
    #taskTable th:last-child {
        padding: 8px 8px !important;
    }
    
    /* Fix footer spacing */
    footer {
        margin-bottom: calc(70px + env(safe-area-inset-bottom)) !important;
    }
}

/* Extra small mobile devices */
@media (max-width: 576px) {
    /* Increase task column width even more on very small screens */
    #taskTable colgroup col:first-child {
        width: 80% !important;
    }
    
    #taskTable colgroup col:last-child {
        width: 20% !important;
    }
    
    /* Reduce deadline date size on very small screens */
    #taskTable td:last-child {
        font-size: 12px !important;
    }
}

/* Remove icons */
.nav-link i,
.btn i {
    display: none;
}

.navbar-brand i {
    display: inline;
}

/* Section Dividers */
.section-divider {
    height: 8px;
    background: var(--ios-list-bg);
    border: none;
    margin: 0;
}

/* Task Title Link */
.task-title-link {
    color: var(--ios-text);
    font-weight: 400;
}

.task-title-link:hover {
    color: var(--ios-blue);
}

/* Remove Bootstrap row/col padding */
.row {
    margin: 0;
}

.row > * {
    padding: 0;
}

/* iOS-style list items */
.list-item {
    background: var(--ios-bg);
    padding: 12px 16px;
    border-top: 0.5px solid var(--ios-separator);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.list-item:first-child {
    border-top: none;
}

.list-item:hover {
    background: var(--ios-hover);
}
