/* ===== iOS Optimized Mobile App Styles ===== */

:root {
    --primary: #007AFF;
    --primary-light: #4DA3FF;
    --danger: #FF3B30;
    --success: #34C759;
    --warning: #FF9500;
    --bg: #F2F2F7;
    --card: #FFFFFF;
    --text: #1C1C1E;
    --text-secondary: #8E8E93;
    --border: #E5E5EA;
    --separator: #C6C6C8;
    --tab-bar-h: 83px;
    --header-h: 56px;
    --safe-top: env(safe-area-inset-top, 0px);
    --safe-bottom: env(safe-area-inset-bottom, 0px);
    --safe-left: env(safe-area-inset-left, 0px);
    --safe-right: env(safe-area-inset-right, 0px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

html, body {
    height: 100%;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
    font-size: 16px;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

/* ===== Header ===== */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: calc(var(--header-h) + var(--safe-top));
    padding-top: var(--safe-top);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-bottom: 0.5px solid var(--border);
}

.app-header h1 {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.header-left {
    position: absolute;
    left: 12px;
    top: calc(var(--safe-top) + 10px);
    display: flex;
    gap: 6px;
}

.header-right {
    position: absolute;
    right: 12px;
    top: calc(var(--safe-top) + 10px);
}

.header-filter-btn {
    background: rgba(0, 122, 255, 0.08);
    border: 1px solid rgba(0, 122, 255, 0.2);
    color: var(--primary);
    padding: 5px 10px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}

.header-filter-btn:active {
    transform: scale(0.95);
}

.header-filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ===== Main Content ===== */
.app-main {
    position: fixed;
    top: calc(var(--header-h) + var(--safe-top));
    left: 0;
    right: 0;
    bottom: var(--tab-bar-h);
    overflow: hidden;
}

.tab-content {
    display: none;
    height: 100%;
    width: 100%;
}

.tab-content.active {
    display: flex;
    flex-direction: column;
}

/* ===== Tab Bar ===== */
.tab-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--tab-bar-h);
    padding-bottom: var(--safe-bottom);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    border-top: 0.5px solid var(--border);
    z-index: 100;
}

.tab-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 0;
    transition: color 0.2s;
}

.tab-item.active {
    color: var(--primary);
}

.tab-item svg {
    width: 24px;
    height: 24px;
}

.tab-item.active svg {
    stroke: var(--primary);
}

/* ===== Map Tab ===== */
#mapTab {
    flex-direction: column;
}

.map-container {
    position: relative;
    flex: 0 0 50%;
    min-height: 200px;
}

.map-view {
    width: 100%;
    height: 100%;
    background: #E8E8ED;
}

.map-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
}

.map-ctrl-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 12px;
    padding: 10px;
    color: var(--text);
    box-shadow: 0 1px 4px rgba(0,0,0,0.12);
    cursor: pointer;
    transition: all 0.15s;
}

.map-ctrl-btn:active {
    transform: scale(0.95);
    background: #E8E8ED;
}

.map-ctrl-btn.active {
    background: var(--primary);
    color: white;
}

.map-ctrl-btn.active svg {
    stroke: white;
}

/* ===== Bottom Panel ===== */
.bottom-panel {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--bg);
    border-top: 0.5px solid var(--border);
    transition: transform 0.3s ease;
}

.panel-handle {
    display: flex;
    justify-content: center;
    padding: 8px 0 4px;
    cursor: pointer;
}

.handle-bar {
    width: 36px;
    height: 5px;
    background: #D1D1D6;
    border-radius: 3px;
}

.panel-section {
    padding: 8px 16px 16px;
}

.panel-section + .panel-section {
    border-top: 0.5px solid var(--border);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.section-header .hint {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-left: auto;
}

.section-icon {
    font-size: 15px;
}

/* ===== Address Textarea ===== */
.address-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--card);
    font-size: 15px;
    font-family: inherit;
    line-height: 1.5;
    resize: none;
    outline: none;
    transition: border-color 0.2s;
    color: var(--text);
}

.address-textarea:focus {
    border-color: var(--primary);
}

.address-textarea::placeholder {
    color: #C7C7CC;
    font-size: 14px;
}

/* ===== Action Buttons ===== */
.action-row {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.btn-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}

.btn-action:active {
    transform: scale(0.97);
}

.btn-display {
    background: var(--primary);
    color: white;
}

.btn-display:active {
    background: #0062CC;
}

.btn-clear {
    background: #F2F2F7;
    color: var(--danger);
    border: 1px solid #FFD4D1;
}

.btn-clear:active {
    background: #FFE5E3;
}

/* ===== Category Chips ===== */
.category-actions {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.btn-chip {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: all 0.15s;
}

.btn-chip:active {
    background: #E8E8ED;
    transform: scale(0.97);
}

.quick-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    background: rgba(0, 122, 255, 0.08);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.15s;
}

.category-tag:active {
    background: rgba(0, 122, 255, 0.15);
    transform: scale(0.97);
}

.category-tag .tag-count {
    font-size: 11px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    padding: 1px 6px;
    font-weight: 600;
}

/* ===== Marker List ===== */
.marker-list {
    max-height: 200px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.marker-count {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

.show-all-btn {
    margin-left: auto;
    padding: 4px 10px;
    border: 1px solid var(--primary);
    border-radius: 6px;
    background: transparent;
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.show-all-btn.active {
    background: var(--primary);
    color: #fff;
}

.marker-label-overlay {
    padding: 2px 6px;
    background: rgba(0,0,0,0.65);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: auto;
    cursor: pointer;
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: -apple-system, sans-serif;
    letter-spacing: -0.2px;
}

.marker-item {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    background: var(--card);
    border-radius: 10px;
    margin-bottom: 6px;
    gap: 10px;
    transition: all 0.15s;
}

.marker-item .marker-color {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.marker-item .marker-address {
    flex: 1;
    font-size: 14px;
    line-height: 1.3;
    color: var(--text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.marker-item .marker-delete {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    flex-shrink: 0;
}

.marker-item .marker-delete:active {
    background: rgba(255, 59, 48, 0.1);
    color: var(--danger);
}

.empty-state {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===== Calendar Tab ===== */
.calendar-container {
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 20px;
}

.calendar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.nav-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 8px;
    border-radius: 10px;
}

.nav-btn:active {
    background: rgba(0, 122, 255, 0.1);
}

.calendar-title {
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text);
}

.weekday-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 0 12px;
    margin-bottom: 4px;
}

.weekday-header span {
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 6px 0;
}

.weekday-header .sun { color: var(--danger); }
.weekday-header .sat { color: var(--primary); }

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 0 12px;
    gap: 2px;
}

.calendar-cell {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    transition: all 0.15s;
    gap: 2px;
}

.calendar-cell:active {
    transform: scale(0.92);
}

.calendar-cell .day-num {
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
}

.calendar-cell.other-month .day-num {
    color: #D1D1D6;
}

.calendar-cell.sunday .day-num {
    color: var(--danger);
}

.calendar-cell.saturday .day-num {
    color: var(--primary);
}

.calendar-cell.today {
    background: var(--primary);
}

.calendar-cell.today .day-num {
    color: white !important;
    font-weight: 600;
}

.calendar-cell.selected {
    background: rgba(0, 122, 255, 0.12);
}

.calendar-cell.today.selected {
    background: var(--primary);
}

.calendar-cell .memo-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--warning);
}

.calendar-cell.today .memo-dot {
    background: white;
}

/* ===== Memo Area ===== */
.memo-area {
    margin: 12px 16px 0;
    padding: 16px;
    background: var(--card);
    border-radius: 16px;
}

.memo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.memo-header h3 {
    font-size: 16px;
    font-weight: 600;
}

.save-status {
    font-size: 12px;
    color: var(--success);
    opacity: 0;
    transition: opacity 0.3s;
}

.save-status.show {
    opacity: 1;
}

.memo-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--bg);
    font-size: 15px;
    font-family: inherit;
    line-height: 1.6;
    resize: none;
    outline: none;
    transition: border-color 0.2s;
    color: var(--text);
    min-height: 120px;
}

.memo-textarea:focus {
    border-color: var(--primary);
    background: white;
}

.memo-textarea::placeholder {
    color: #C7C7CC;
}

.memo-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

/* ===== Buttons ===== */
.btn-primary {
    flex: 1;
    padding: 12px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}

.btn-primary:active {
    background: #0062CC;
    transform: scale(0.97);
}

.btn-secondary {
    flex: 1;
    padding: 12px 20px;
    background: var(--bg);
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}

.btn-secondary:active {
    background: #E5E5EA;
    transform: scale(0.97);
}

/* ===== Modals ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content {
    background: var(--card);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 340px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.modal-content p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.4;
}

.modal-content input[type="text"] {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    margin-bottom: 16px;
    background: var(--bg);
    color: var(--text);
}

.modal-content input[type="text"]:focus {
    border-color: var(--primary);
    background: white;
}

.modal-actions {
    display: flex;
    gap: 10px;
}

/* ===== Category List (Load Modal) ===== */
.category-list {
    max-height: 300px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 16px;
}

.category-list-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: var(--bg);
    border-radius: 10px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.15s;
}

.category-list-item:active {
    background: #E5E5EA;
    transform: scale(0.98);
}

.category-list-item .cat-info {
    flex: 1;
}

.category-list-item .cat-name {
    font-size: 15px;
    font-weight: 600;
}

.category-list-item .cat-count {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.category-list-item .cat-delete {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    padding: 8px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
}

.category-list-item .cat-delete:active {
    background: rgba(255, 59, 48, 0.1);
}

.category-list .empty-state {
    padding: 30px 20px;
}

/* ===== Toast ===== */
.toast {
    position: fixed;
    bottom: calc(var(--tab-bar-h) + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    z-index: 2000;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===== Loading Spinner ===== */
.loading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

.spinner {
    width: 28px;
    height: 28px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ===== Responsive ===== */
@media (max-height: 667px) {
    .map-container {
        flex: 0 0 45%;
    }
    .calendar-cell {
        font-size: 14px;
    }
}

@media (min-height: 812px) {
    .map-container {
        flex: 0 0 50%;
    }
}

/* ===== Scrollbar (hidden for iOS feel) ===== */
.bottom-panel::-webkit-scrollbar,
.marker-list::-webkit-scrollbar,
.calendar-container::-webkit-scrollbar,
.category-list::-webkit-scrollbar {
    display: none;
}

/* ===== Panel expanded/collapsed states ===== */
.bottom-panel.collapsed {
    flex: 0 0 44px;
    overflow: hidden;
}

.bottom-panel.expanded {
    flex: 1;
}

/* ===== Full Map Mode ===== */
.full-map .app-header {
    display: none;
}

.full-map .tab-bar {
    display: none;
}

.full-map .app-main {
    top: 0;
    bottom: 0;
}

.full-map .map-container {
    flex: 1 !important;
}

.full-map .bottom-panel {
    display: none;
}

.full-map .map-controls {
    top: calc(env(safe-area-inset-top, 0px) + 10px);
    right: calc(env(safe-area-inset-right, 0px) + 10px);
}

.full-map .map-ctrl-btn#fitAllBtn {
    background: var(--primary);
    color: white;
}

.full-map .map-ctrl-btn#fitAllBtn svg {
    stroke: white;
}

/* ===== Geocoding progress ===== */
.geocoding-progress {
    font-size: 12px;
    color: var(--text-secondary);
    text-align: center;
    padding: 8px;
}

/* ===== Draw Mode Controls ===== */
.draw-controls {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 14px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    z-index: 10;
}

.draw-hint {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.draw-btn {
    padding: 8px 14px;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.draw-complete {
    background: var(--primary);
    color: white;
}

.draw-undo {
    background: var(--warning);
    color: white;
}

.draw-erase {
    background: #E5E5EA;
    color: var(--danger);
}

.draw-erase.active {
    background: var(--danger);
    color: white;
}

.draw-cancel {
    background: #E5E5EA;
    color: var(--text);
}

.draw-btn:active {
    transform: scale(0.95);
}

/* ===== Delete Action Sheet ===== */
.delete-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1000;
    padding: 0 8px;
    padding-bottom: calc(var(--safe-bottom) + 8px);
}

.delete-menu {
    width: 100%;
    max-width: 360px;
}

.delete-menu-options {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 8px;
}

.delete-menu-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
    padding: 14px 16px 4px;
}

.delete-menu-item {
    display: block;
    width: 100%;
    padding: 16px;
    background: none;
    border: none;
    border-top: 0.5px solid rgba(0, 0, 0, 0.1);
    font-size: 17px;
    color: var(--primary);
    text-align: center;
    cursor: pointer;
}

.delete-menu-item:active {
    background: rgba(0, 0, 0, 0.05);
}

.delete-menu-item.delete-menu-danger {
    color: var(--danger);
}

.delete-menu-cancel {
    display: block;
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    cursor: pointer;
}

.delete-menu-cancel:active {
    background: rgba(255, 255, 255, 0.8);
}

/* ===== Select Delete Mode ===== */
.calendar-cell .check-mark {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid var(--text-secondary);
    background: white;
    font-size: 0;
}

.calendar-cell .check-mark.checked {
    background: var(--danger);
    border-color: var(--danger);
}

.calendar-cell .check-mark.checked::after {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 10px;
    font-weight: 700;
    color: white;
}

.calendar-cell.checked-for-delete {
    background: rgba(255, 59, 48, 0.12) !important;
}

.calendar-cell.select-disabled {
    opacity: 0.3;
}

.select-delete-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    gap: 8px;
}

.select-delete-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.select-delete-count {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

.select-all-btn {
    background: none;
    border: 1px solid var(--border);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    cursor: pointer;
}

.select-all-btn:active {
    background: rgba(0, 122, 255, 0.1);
}

.select-delete-actions {
    display: flex;
    gap: 8px;
}

.select-delete-btn {
    padding: 8px 16px !important;
    font-size: 14px !important;
    flex: none !important;
}

.btn-danger {
    padding: 8px 16px;
    background: var(--danger);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}

.btn-danger:active {
    background: #CC2E26;
    transform: scale(0.97);
}

.btn-danger:disabled {
    opacity: 0.4;
}

/* ===== Date detected badge ===== */
.date-detected {
    display: inline-block;
    font-size: 12px;
    background: rgba(0, 122, 255, 0.1);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 8px;
    font-weight: 500;
    margin-left: 8px;
}
