/* Checkout Modal Styles */
.checkout-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    padding: 12px;
    animation: fadeIn 0.3s ease;
}

.checkout-modal {
    background: white;
    border-radius: 28px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
    overflow: hidden;
    animation: slideUp 0.3s ease;
    border: 1px solid rgba(214, 222, 255, 0.95);
}

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

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 14px 10px;
    background: linear-gradient(140deg, rgba(67, 97, 238, 0.18), rgba(118, 75, 162, 0.16));
    border-bottom: 1px solid #dfe5ff;
    color: #111827;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-modal {
    background: rgba(99, 102, 241, 0.12);
    border: none;
    color: #374151;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.close-modal:hover {
    background: rgba(99, 102, 241, 0.22);
}

.checkout-step-indicator {
    padding: 8px 10px 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    opacity: 0.45;
    transition: all 0.25s ease;
    cursor: pointer;
}

.checkout-step:hover {
    opacity: 0.75;
}

.checkout-step.active,
.checkout-step.completed {
    opacity: 1;
}

.checkout-step-number {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    border: 2px solid #c7d2fe;
    color: #64748b;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.checkout-step.active .checkout-step-number,
.checkout-step.completed .checkout-step-number {
    border-color: #4361ee;
    color: #4361ee;
}

.checkout-step-label {
    font-size: 0.66rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.checkout-step.active .checkout-step-label,
.checkout-step.completed .checkout-step-label {
    color: #334155;
}

.checkout-step-connector {
    flex: 0 0 22px;
    height: 2px;
    background: #e5e7eb;
    border-radius: 999px;
}

.checkout-step-connector.completed {
    background: #4361ee;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    scrollbar-width: thin;
    scrollbar-color: #2563eb #dbeafe;
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: #dbeafe;
    border-radius: 999px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 999px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

.checkout-wizard-step {
    display: none;
}

.checkout-wizard-step.active {
    display: block;
}

.modal-footer {
    padding: 10px 12px 12px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

/* Location Section */
.location-section {
    text-align: left;
    padding: 10px 0;
}

.location-title {
    margin: 0 0 6px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1f2937;
    font-size: 1rem;
}

.location-section p {
    color: #718096;
    margin-bottom: 10px;
    font-size: 0.87rem;
    line-height: 1.5;
}

.location-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    padding: 9px 12px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn-secondary {
    background: #f7fafc;
    color: #4a5568;
    border: 1px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
}

/* Distance Info */
.distance-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 12px;
}

.distance-icon {
    font-size: 24px;
    color: #667eea;
}

.distance-details h4 {
    margin: 0 0 5px 0;
    color: #2d3748;
    font-size: 0.9rem;
}

.distance-value {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.address-info {
    color: #718096;
    font-size: 0.82rem;
    line-height: 1.4;
}

/* Transport Options */
.transport-options h4 {
    margin: 0 0 10px 0;
    color: #2d3748;
    font-size: 1rem;
}

.transport-note {
    color: #718096;
    margin-bottom: 10px;
    font-size: 0.82rem;
    line-height: 1.5;
}

.transport-final-fee-note {
    margin: 0 0 10px;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(102, 126, 234, 0.28);
    background: rgba(102, 126, 234, 0.08);
    color: #4c51bf;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.35;
}

.transport-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
}

.transport-option {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.transport-option:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.transport-option.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.transport-option.unavailable {
    opacity: 0.6;
    cursor: not-allowed;
}

.transport-option.unavailable:hover {
    transform: none;
    border-color: #e2e8f0;
    box-shadow: none;
}

.free-delivery-option {
    border: 2px dashed #38a169;
    background: #f0fff4;
    justify-content: center;
    min-height: 80px;
    cursor: default;
    pointer-events: none;
}

.free-delivery-option:hover {
    border-color: #38a169;
    transform: none;
    box-shadow: none;
}

.free-delivery-stamp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 18px;
    border: 2px solid #38a169;
    border-radius: 10px;
    color: #276749;
    background: rgba(56, 161, 105, 0.08);
    transform: rotate(-6deg);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.free-delivery-stamp .stamp-title {
    font-size: 1rem;
}

.free-delivery-stamp .stamp-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    color: #2f855a;
}

.transport-image {
    width: 72px;
    min-width: 72px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background: #f7fafc;
}

.transport-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.transport-info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.transport-details {
    flex: 1;
    min-width: 0;
}

.transport-price {
    margin-left: auto;
    text-align: right;
    white-space: nowrap;
}

.transport-info h5 {
    margin: 0 0 5px 0;
    font-size: 0.9rem;
    color: #2d3748;
    font-weight: 600;
}

.transport-info p {
    margin: 0;
    font-weight: 600;
    color: #667eea;
    font-size: 0.95rem;
}

.transport-suggested-label {
    margin: 0;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    font-weight: 700;
}

.transport-suggested-value {
    margin: 2px 0 0;
    font-weight: 700;
    color: #667eea;
    font-size: 0.95rem;
}

.transport-unavailable-note {
    color: #718096 !important;
    font-size: 0.82rem !important;
    font-weight: 600;
}

/* Bus Warning */
.bus-warning {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    margin-top: 10px;
}

.warning-icon {
    font-size: 20px;
    color: #e67e22;
}

.warning-content h5 {
    margin: 0 0 5px 0;
    color: #e67e22;
}

.warning-content p {
    margin: 0;
    color: #718096;
    font-size: 0.82rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #2d3748;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 9px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group textarea {
    scrollbar-width: thin;
    scrollbar-color: #2563eb #dbeafe;
}

.form-group textarea::-webkit-scrollbar {
    width: 6px;
}

.form-group textarea::-webkit-scrollbar-track {
    background: #dbeafe;
    border-radius: 999px;
}

.form-group textarea::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 999px;
}

.form-group textarea::-webkit-scrollbar-thumb:hover {
    background: #1d4ed8;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #718096;
    font-size: 0.78rem;
}

/* Contact Section */
.contact-section {
    margin: 12px 0;
    padding: 12px;
    background: #f8fafc;
    border-radius: 10px;
}

.contact-section h4 {
    margin: 0 0 15px 0;
    color: #2d3748;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.current-phone {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.current-phone span {
    color: #718096;
}

.current-phone strong {
    color: #2d3748;
    font-size: 0.95rem;
}

/* Order Summary */
.order-summary-section {
    margin: 12px 0;
    padding: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
    border-radius: 10px;
}

.order-summary-section h4 {
    margin: 0 0 15px 0;
    color: #2d3748;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid #e2e8f0;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
}

.pending-delivery-stamp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border: 2px solid #dd6b20;
    border-radius: 999px;
    color: #c05621;
    background: rgba(221, 107, 32, 0.12);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.delivery-fee-pending-note {
    margin-top: 8px;
    padding: 7px 10px;
    border-radius: 8px;
    border: 1px solid rgba(221, 107, 32, 0.45);
    background: rgba(237, 137, 54, 0.15);
    color: #c05621;
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.35;
}

/* Loading State */
.modal-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.modal-loading p {
    color: #4a5568;
    font-size: 1.1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success & Error Modals */
.success-modal-overlay,
.error-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    padding: 20px;
}

.success-modal,
.error-modal {
    background: white;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    animation: slideUp 0.3s ease;
}

.success-icon {
    font-size: 60px;
    color: #48bb78;
    margin-bottom: 20px;
}

.error-icon {
    font-size: 60px;
    color: #f56565;
    margin-bottom: 20px;
}

.success-modal h3,
.error-modal h3 {
    margin: 0 0 15px 0;
    color: #2d3748;
    font-size: 1.5rem;
}

.success-modal p,
.error-modal p {
    color: #718096;
    margin-bottom: 25px;
    line-height: 1.5;
}

.order-details {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    text-align: left;
}

.order-details p {
    margin: 0 0 10px 0;
    display: flex;
    justify-content: space-between;
}

.order-details p:last-child {
    margin-bottom: 0;
}

.success-actions,
.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .checkout-modal {
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-footer {
        padding: 15px 20px;
        flex-direction: column;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .transport-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .distance-info {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .success-actions,
    .error-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .transport-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
    }
    
    .success-modal,
    .error-modal {
        padding: 20px;
    }
}

.address-search-wrapper {
    position: relative;
}

.address-suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    max-height: 220px;
    overflow-y: auto;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
    z-index: 20;
}

.address-suggestion-item {
    width: 100%;
    border: 0;
    background: #ffffff;
    text-align: left;
    padding: 10px 12px;
    cursor: pointer;
    color: #2d3748;
    border-bottom: 1px solid #edf2f7;
}

.address-suggestion-item:last-child {
    border-bottom: none;
}

.address-suggestion-item:hover {
    background: #f8fafc;
}

.address-suggestion-item.empty {
    color: #718096;
    cursor: default;
}

.address-suggestion-main {
    display: block;
    font-size: 0.84rem;
    line-height: 1.4;
}

#deliveryNotes {
    resize: none;
}

html[data-theme='dark'] .checkout-modal-overlay,
html[data-theme='dark'] .success-modal-overlay,
html[data-theme='dark'] .error-modal-overlay {
    background: rgba(2, 6, 23, 0.74);
}

html[data-theme='dark'] .checkout-modal,
html[data-theme='dark'] .success-modal,
html[data-theme='dark'] .error-modal,
html[data-theme='dark'] .transport-option,
html[data-theme='dark'] .current-phone,
html[data-theme='dark'] .order-details,
html[data-theme='dark'] .address-suggestions,
html[data-theme='dark'] .address-suggestion-item,
html[data-theme='dark'] .modal-footer {
    background: #111827;
    border-color: #334155;
    color: #e2e8f0;
}

html[data-theme='dark'] .modal-header {
    background: linear-gradient(140deg, rgba(30, 64, 175, 0.34), rgba(15, 23, 42, 0.75));
    border-bottom-color: #334155;
    color: #f8fafc;
}

html[data-theme='dark'] .modal-header h2,
html[data-theme='dark'] .location-title,
html[data-theme='dark'] .distance-details h4,
html[data-theme='dark'] .transport-options h4,
html[data-theme='dark'] .contact-section h4,
html[data-theme='dark'] .order-summary-section h4,
html[data-theme='dark'] .form-group label,
html[data-theme='dark'] .success-modal h3,
html[data-theme='dark'] .error-modal h3,
html[data-theme='dark'] .warning-content h5,
html[data-theme='dark'] .transport-info h5,
html[data-theme='dark'] .distance-value,
html[data-theme='dark'] .current-phone strong {
    color: #f8fafc;
}

html[data-theme='dark'] .close-modal {
    background: rgba(148, 163, 184, 0.24);
    color: #e2e8f0;
}

html[data-theme='dark'] .close-modal:hover {
    background: rgba(148, 163, 184, 0.36);
}

html[data-theme='dark'] .checkout-step-number {
    background: #0f172a;
    border-color: #475569;
    color: #94a3b8;
}

html[data-theme='dark'] .checkout-step.active .checkout-step-number,
html[data-theme='dark'] .checkout-step.completed .checkout-step-number {
    border-color: #60a5fa;
    color: #93c5fd;
}

html[data-theme='dark'] .checkout-step-label,
html[data-theme='dark'] .location-section p,
html[data-theme='dark'] .address-info,
html[data-theme='dark'] .transport-note,
html[data-theme='dark'] .transport-final-fee-note,
html[data-theme='dark'] .warning-content p,
html[data-theme='dark'] .form-group small,
html[data-theme='dark'] .current-phone span,
html[data-theme='dark'] .success-modal p,
html[data-theme='dark'] .error-modal p,
html[data-theme='dark'] .resend-info,
html[data-theme='dark'] .delivery-fee-pending-note {
    color: #94a3b8;
}

html[data-theme='dark'] .checkout-step.active .checkout-step-label,
html[data-theme='dark'] .checkout-step.completed .checkout-step-label {
    color: #e2e8f0;
}

html[data-theme='dark'] .checkout-step-connector {
    background: #334155;
}

html[data-theme='dark'] .checkout-step-connector.completed {
    background: #60a5fa;
}

html[data-theme='dark'] .btn-secondary {
    background: #1e293b;
    color: #cbd5e1;
    border-color: #334155;
}

html[data-theme='dark'] .btn-secondary:hover {
    background: #334155;
    border-color: #475569;
}

html[data-theme='dark'] .distance-info,
html[data-theme='dark'] .contact-section,
html[data-theme='dark'] .order-summary-section,
html[data-theme='dark'] .transport-image {
    background: #0f172a;
    border-color: #334155;
}

html[data-theme='dark'] .distance-icon,
html[data-theme='dark'] .transport-info p,
html[data-theme='dark'] .transport-suggested-value,
html[data-theme='dark'] .pending-delivery-stamp,
html[data-theme='dark'] .delivery-fee-pending-note {
    color: #93c5fd;
}

html[data-theme='dark'] .transport-final-fee-note {
    border-color: rgba(96, 165, 250, 0.32);
    background: rgba(37, 99, 235, 0.16);
}

html[data-theme='dark'] .transport-suggested-label {
    color: #94a3b8;
}

html[data-theme='dark'] .transport-unavailable-note {
    color: #94a3b8 !important;
}

html[data-theme='dark'] .transport-option:hover {
    border-color: #60a5fa;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.22);
}

html[data-theme='dark'] .transport-option.selected {
    border-color: #60a5fa;
    background: rgba(37, 99, 235, 0.2);
}

html[data-theme='dark'] .free-delivery-option {
    border-color: #4ade80;
    background: rgba(22, 101, 52, 0.34);
}

html[data-theme='dark'] .free-delivery-stamp {
    border-color: #4ade80;
    color: #bbf7d0;
    background: rgba(22, 101, 52, 0.2);
}

html[data-theme='dark'] .free-delivery-stamp .stamp-subtitle {
    color: #86efac;
}

html[data-theme='dark'] .bus-warning {
    background: rgba(113, 63, 18, 0.42);
    border-color: rgba(251, 191, 36, 0.4);
}

html[data-theme='dark'] .warning-icon,
html[data-theme='dark'] .warning-content h5 {
    color: #fcd34d;
}

html[data-theme='dark'] .form-group input,
html[data-theme='dark'] .form-group textarea,
html[data-theme='dark'] .phone-input-group {
    background: #0f172a;
    border-color: #334155;
    color: #e2e8f0;
}

html[data-theme='dark'] .phone-prefix {
    background: #1e293b;
    border-right-color: #334155;
    color: #cbd5e1;
}

html[data-theme='dark'] .form-group input::placeholder,
html[data-theme='dark'] .form-group textarea::placeholder {
    color: #64748b;
}

html[data-theme='dark'] .form-group input:focus,
html[data-theme='dark'] .form-group textarea:focus,
html[data-theme='dark'] .phone-input-group:focus-within {
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.22);
}

html[data-theme='dark'] .summary-row,
html[data-theme='dark'] .summary-row.total,
html[data-theme='dark'] .address-suggestion-item {
    border-bottom-color: #334155;
}

html[data-theme='dark'] .summary-row.total {
    color: #f8fafc;
}

html[data-theme='dark'] .pending-delivery-stamp {
    border-color: rgba(96, 165, 250, 0.55);
    background: rgba(37, 99, 235, 0.2);
}

html[data-theme='dark'] .modal-loading {
    background: rgba(2, 6, 23, 0.82);
}

html[data-theme='dark'] .modal-loading p {
    color: #e2e8f0;
}

html[data-theme='dark'] .loading-spinner {
    border-color: #334155;
    border-top-color: #60a5fa;
}

html[data-theme='dark'] .order-details {
    background: #0f172a;
}

html[data-theme='dark'] .address-suggestion-item:hover {
    background: #1e293b;
}

html[data-theme='dark'] .address-suggestion-item.empty {
    color: #94a3b8;
}