/**
 * TK Address Map Component Styles
 * Version: 16.0.0 (Distance Matrix API)
 * 
 * Extracted from inline styles for better performance and caching
 */

/* Color Variables */
:root {
    --tk-maroon: #7B241C;
    --tk-maroon-light: #a53526;
    --tk-gold: #D4AF37;
    --tk-gold-light: #e6c158;
}

/* Modal Wrapper - FULL SCREEN */
.tk-modal-wrapper {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none; /* Hidden by default */
    background: rgba(0, 0, 0, 0.95);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* When modal is shown - display must be flex AND opacity 1 */
.tk-modal-wrapper.show {
    display: flex !important;
    opacity: 1;
}

/* Force visibility when jQuery sets display */
.tk-modal-wrapper[style*="display: flex"],
.tk-modal-wrapper[style*="display: block"] {
    display: flex !important;
}

/* Prevent body scroll when modal is open */
body.tk-modal-open {
    overflow: hidden;
}

/* FULL SCREEN MODAL CARD */
.tk-modal-card {
    background: #ffffff;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tk-modal-wrapper.show .tk-modal-card {
    transform: translateY(0);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .tk-modal-card {
        border-radius: 0;
    }
}

.tk-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 16px;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, var(--tk-maroon) 0%, var(--tk-maroon-light) 100%);
    color: white;
    border-radius: 12px 12px 0 0;
}

.tk-modal-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.tk-modal-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.tk-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.tk-modal-content {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Map View - FULL SCREEN */
#tk-map-view-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%; /* Use full available height */
    overflow: visible; /* Changed from hidden - allow button to be visible */
}

.tk-map-container-wrapper {
    position: relative;
    height: 40vh; /* Reduced to 40vh to ensure button visibility */
    flex-shrink: 0;
    flex-grow: 0;
}

.tk-map-canvas {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--tk-maroon-light) 0%, var(--tk-gold-light) 100%);
    transition: filter 0.3s ease, opacity 0.3s ease;
}

/* BLUR STATE - Map loads blurred until user interacts */
.tk-map-canvas.tk-map-loading {
    filter: blur(8px);
    opacity: 0.4;
    pointer-events: all; /* KEEP INTERACTIVE - User can still drag map */
}

/* Selection Prompt Overlay */
.tk-selection-prompt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 200;
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 90%;
    width: 400px;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: auto; /* Allow clicking buttons */
}

.tk-selection-prompt.hidden {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    pointer-events: none;
    display: none; /* Fully remove from layout */
}

.tk-selection-prompt h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 600;
    color: var(--tk-maroon);
}

.tk-selection-prompt p {
    margin: 0 0 24px;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

.tk-selection-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tk-selection-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border: 2px solid var(--tk-maroon);
    border-radius: 8px;
    background: white;
    color: var(--tk-maroon);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 15px;
}

.tk-selection-btn:hover {
    background: var(--tk-maroon);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 36, 28, 0.3);
}

.tk-selection-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.tk-selection-btn.primary {
    background: var(--tk-maroon);
    color: white;
}

.tk-selection-btn.primary:hover {
    background: var(--tk-maroon-light);
    border-color: var(--tk-maroon-light);
}

/* Map Controls - Positioned at bottom of map */
.tk-map-controls {
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 100;
}

.tk-search-wrapper {
    position: relative;
    flex: 1;
    min-width: 0;
}

.tk-search-wrapper i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 16px;
    z-index: 1;
}

#tk-location-search {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.2s;
}

#tk-location-search:focus {
    outline: none;
    border-color: var(--tk-maroon);
    box-shadow: 0 0 0 3px rgba(123, 36, 28, 0.1);
}

.tk-location-btn,
.tk-back-btn {
    width: 52px;
    height: 52px;
    border: 2px solid #d1d5db;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

/* GPS Button - Vibrant Gradient with Stronger Animation */
.tk-location-btn {
    position: relative;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
    border: 3px solid #1e40af;
    color: white;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.5), 0 0 0 0 rgba(59, 130, 246, 0.7);
    animation: tk-gps-button-pulse 2.5s infinite;
}

.tk-location-btn svg {
    stroke: white;
    stroke-width: 2.5;
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

@keyframes tk-gps-button-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.5), 0 0 0 0 rgba(59, 130, 246, 0.7);
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 28px rgba(59, 130, 246, 0.6), 0 0 0 12px rgba(59, 130, 246, 0);
        background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.5), 0 0 0 0 rgba(59, 130, 246, 0);
        background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
        transform: scale(1);
    }
}

.tk-location-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e3a8a 100%);
    border-color: #1e3a8a;
    transform: scale(1.1) !important;
    animation: none;
    box-shadow: 0 6px 30px rgba(37, 99, 235, 0.7);
}

.tk-location-btn:active {
    transform: scale(0.95) !important;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.5);
}

.tk-back-btn:hover {
    background: white;
    border-color: var(--tk-maroon);
    transform: scale(1.05);
}

.tk-location-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    animation: none;
}

.tk-location-btn.loading::before {
    animation: none;
}

/* Customer Pin */
.tk-customer-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 1000;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tk-pin-tooltip {
    background: var(--tk-maroon);
    color: var(--tk-gold);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    margin-bottom: 8px;
    position: relative;
}

.tk-pin-tooltip:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border: 5px solid transparent;
    border-top-color: var(--tk-maroon);
}

.tk-pin-pulse {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--tk-gold);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
}

.tk-pin-icon {
    font-size: 30px;
    filter: drop-shadow(0 2px 6px rgba(123, 36, 28, 0.4));
    z-index: 1;
}

/* Map Error */
.tk-map-error {
    position: absolute;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--tk-maroon-light);
    text-align: center;
    padding: 30px;
    gap: 12px;
}

.tk-map-error.show {
    display: flex;
}

.tk-map-error p {
    margin: 0;
    font-size: 16px;
    color: white;
    font-weight: 500;
}

/* Address Preview - Fixed visible height */
.tk-address-preview {
    padding: 16px 20px;
    background: white;
    flex: 1; /* Take remaining space */
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    min-height: 0; /* Allow flex shrinking */
    max-height: 35vh; /* Limit maximum height to ensure button is visible */
}

.tk-address-text {
    margin-bottom: 12px;
    max-height: none; /* Remove height restriction */
    overflow-y: visible;
}

.tk-address-text p {
    margin: 0 0 8px 0;
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
}

.tk-address-text p:last-child {
    margin-bottom: 0;
}

.tk-zone-status {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
}

.tk-zone-status.in-zone {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.tk-zone-status.out-of-zone {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.tk-zone-status.checking {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

/* Confirm Wrapper - Full Width Button (Always Visible) */
.tk-confirm-wrapper {
    padding: 16px 20px 20px 20px; /* Extra bottom padding */
    background: white;
    border-top: 2px solid #e5e7eb;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
    flex-shrink: 0; /* Never shrink - always visible */
    flex-grow: 0;
    position: relative; /* Ensure it stays in flow */
    z-index: 10; /* Above other content */
}

.tk-confirm-wrapper button {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tk-confirm-wrapper button:not(:disabled) {
    background: var(--tk-maroon);
    color: white;
    border: none;
}

.tk-confirm-wrapper button:not(:disabled):hover {
    background: var(--tk-maroon-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(123, 36, 28, 0.3);
}

.tk-confirm-wrapper button:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    border: 1px solid #d1d5db;
}

/* Manual View */
.tk-manual-view {
    padding: 0;
}

.tk-manual-form-wrapper {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.tk-manual-form-wrapper h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--tk-maroon);
}

/* Selected Location Display */
.tk-selected-location-display {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e5e7eb;
}

.tk-selected-location-display label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tk-address-display-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    min-height: 56px;
}

.tk-address-display-box svg {
    flex-shrink: 0;
    stroke: var(--tk-maroon);
    margin-top: 2px;
}

.tk-address-display-box span {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    color: #111827;
    font-weight: 500;
}

.tk-address-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tk-form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tk-form-row label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.tk-form-row input {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s;
    -webkit-appearance: none; /* Remove iOS default styling */
    appearance: none;
}

.tk-form-row input:focus {
    outline: none;
    border-color: var(--tk-maroon);
    box-shadow: 0 0 0 3px rgba(123, 36, 28, 0.1);
}

.tk-address-type-fieldset {
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 16px;
    margin: 8px 0;
}

.tk-address-type-fieldset legend {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    padding: 0 8px;
}

.tk-radio-group {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.tk-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    transition: all 0.2s;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    flex: 1;
    justify-content: center;
}

.tk-radio-label:hover {
    border-color: var(--tk-maroon);
    background: rgba(123, 36, 28, 0.05);
}

.tk-radio-label input {
    margin: 0;
}

.tk-radio-label input:checked + svg {
    color: var(--tk-maroon);
}

.tk-radio-label:has(input:checked) {
    border-color: var(--tk-maroon);
    background: rgba(123, 36, 28, 0.1);
    color: var(--tk-maroon);
}

.tk-form-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

/* Buttons - Enhanced sizes */
.tk-btn-primary,
.tk-btn-secondary,
.tk-btn-link {
    padding: 16px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    letter-spacing: 0.3px;
}

.tk-btn-primary {
    background: linear-gradient(135deg, var(--tk-maroon) 0%, var(--tk-maroon-light) 100%);
    color: white;
    min-width: 200px;
    flex: 2;
    box-shadow: 0 4px 14px rgba(123, 36, 28, 0.25);
    font-size: 17px;
}

.tk-btn-primary:hover:not(:disabled),
.tk-btn-primary:active:not(:disabled) {
    background: linear-gradient(135deg, var(--tk-maroon-light) 0%, var(--tk-maroon) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(123, 36, 28, 0.35);
}

.tk-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 8px rgba(123, 36, 28, 0.15);
}

.tk-btn-secondary {
    background: white;
    color: var(--tk-maroon);
    border: 2px solid var(--tk-maroon);
    flex: 1;
    min-width: 140px;
    font-size: 16px;
}

.tk-btn-secondary:hover,
.tk-btn-secondary:active {
    background: var(--tk-maroon);
    color: white;
    border-color: var(--tk-maroon);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(123, 36, 28, 0.25);
}

.tk-btn-link {
    background: none;
    color: var(--tk-maroon);
    text-decoration: underline;
    padding: 8px 16px;
}

.tk-btn-link:hover,
.tk-btn-link:active {
    color: var(--tk-maroon-light);
}

/* Responsive */
@media (max-width: 640px) {
    /* Mobile-first: Full-screen app-like experience */
    .tk-modal-card {
        width: 100vw;
        max-width: 100vw;
        max-height: 100vh;
        height: 100vh;
        border-radius: 0;
        margin: 0;
    }

    .tk-modal-header {
        padding: 16px 20px 12px;
        border-radius: 0;
        flex-shrink: 0;
    }

    .tk-modal-header h2 {
        font-size: 17px;
        font-weight: 600;
    }

    .tk-modal-close {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        line-height: 1;
    }

    .tk-map-container-wrapper {
        height: 35vh; /* Smaller map on mobile - 35% of screen */
        min-height: 250px;
        max-height: 350px;
    }

    .tk-map-controls {
        bottom: 8px;
        left: 12px;
        right: 12px;
        gap: 8px;
    }

    .tk-search-wrapper input {
        font-size: 16px; /* Prevent iOS zoom on focus */
        padding: 12px 12px 12px 38px;
        height: 48px;
    }

    .tk-location-btn {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        font-size: 18px;
    }

    /* Bottom content area - ensure visibility */
    .tk-address-preview {
        padding: 14px 16px;
        flex: 1; /* Take available space */
        overflow-y: auto;
        min-height: 120px; /* Minimum height to show content */
    }
    
    .tk-address-text {
        margin-bottom: 10px;
    }
    
    .tk-address-text p {
        font-size: 14px;
        line-height: 1.5;
    }

    .tk-confirm-wrapper {
        padding: 12px 16px 16px 16px; /* Extra bottom padding for iOS safe area */
        flex-shrink: 0;
        background: white;
    }
    
    .tk-confirm-wrapper button {
        height: 50px;
        font-size: 15px;
        font-weight: 600;
    }

    .tk-radio-group {
        flex-direction: column;
        gap: 12px;
    }

    .tk-radio-option {
        padding: 16px;
        font-size: 15px;
    }

    .tk-form-actions {
        flex-direction: column;
        gap: 12px;
        padding-top: 20px;
    }

    .tk-btn-primary,
    .tk-btn-secondary {
        min-width: 100%;
        height: 52px;
        font-size: 16px;
        font-weight: 600;
    }

    /* Outside delivery area message */
    .tk-outside-message {
        padding: 20px;
        font-size: 15px;
        line-height: 1.6;
    }

    .tk-outside-message h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
}

/* Animation keyframes */
@keyframes pulse {
    0% {
        transform: translateX(-50%) scale(0.8);
        opacity: 0.8;
    }

    50% {
        transform: translateX(-50%) scale(1.2);
        opacity: 0.3;
    }

    100% {
        transform: translateX(-50%) scale(0.8);
        opacity: 0.8;
    }
}

/* Zone Badge Styles (for delivery status) */
.tk-zone-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}

.tk-zone-badge.ok {
    background: #d1fae5;
    color: #065f46;
}

.tk-zone-badge.error {
    background: #fee2e2;
    color: #991b1b;
}

.tk-zone-badge.warning {
    background: #fef3c7;
    color: #92400e;
}

/* ========================================
   Google Places Autocomplete Dropdown
   ======================================== */
.pac-container {
    z-index: 100001 !important; /* Above modal (100000) */
    border-radius: 8px !important;
    margin-top: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid #e5e7eb !important;
    font-family: inherit !important;
}

.pac-item {
    padding: 10px 14px !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    cursor: pointer !important;
    border-top: 1px solid #f3f4f6 !important;
}

.pac-item:first-child {
    border-top: none !important;
}

.pac-item:hover {
    background-color: #f9fafb !important;
}

.pac-item-selected,
.pac-item-selected:hover {
    background-color: #f3f4f6 !important;
}

.pac-icon {
    margin-right: 10px !important;
}

.pac-item-query {
    font-size: 14px !important;
    color: #111827 !important;
}

.pac-matched {
    font-weight: 600 !important;
}

/* ========================================
   Mobile-Specific Enhancements
   ======================================== */
@media (max-width: 768px) {
    /* Full viewport modal */
    .tk-modal-wrapper {
        background: rgba(0, 0, 0, 1);
    }
    
    .tk-modal-header {
        padding: 16px 20px;
        border-radius: 0;
    }
    
    .tk-modal-header h2 {
        font-size: 16px;
    }
    
    /* Larger map on mobile */
    .tk-map-container-wrapper {
        height: 50vh !important; /* Reduced from 75vh to 50vh - gives more room for content below */
    }
    
    /* Selection prompt mobile sizing */
    .tk-selection-prompt {
        width: 90%;
        max-width: none;
        padding: 24px 20px;
    }
    
    .tk-selection-prompt h3 {
        font-size: 18px;
    }
    
    .tk-selection-prompt p {
        font-size: 13px;
    }
    
    .tk-selection-btn {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    /* Map controls repositioned to bottom */
    .tk-map-controls {
        bottom: 5px;
        left: 16px;
        right: 16px;
    }
    
    #tk-search-input {
        font-size: 14px;
        padding: 10px 12px 10px 36px;
    }
    
    .tk-location-btn,
    .tk-back-btn {
        width: 42px;
        height: 42px;
    }
    
    /* Address preview mobile */
    .tk-address-preview {
        padding: 16px 20px;
        max-height: 35vh !important; /* Ensure it's visible and scrollable */
        overflow-y: auto;
        flex-shrink: 0;
    }
    
    .tk-address-text p {
        font-size: 14px;
    }
    
    .tk-confirm-wrapper {
        padding: 16px 20px;
    }
    
    .tk-confirm-wrapper button {
        padding: 14px;
        font-size: 15px;
    }
}
