/* Marmaray Süre Hesaplama CSS - ULTRA MODERN Version 2.0 */
/* Premium SaaS Design - Glassmorphism + Deep Shadows + Bold Typography */
/* Renk Paleti: Yeşil (#16a34a) + Beyaz (#ffffff) + Açık Yeşil (#4ade80) */

:root {
    --primary-green: #16a34a;
    --primary-green-dark: #15803d;
    --primary-green-light: #22c55e;
    --accent-green: #22c55e;
    --accent-green-light: #4ade80;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-800: #1f2937;
    --shadow-sm: 0 2px 8px rgba(22, 163, 74, 0.08);
    --shadow-md: 0 4px 16px rgba(22, 163, 74, 0.12);
    --shadow-lg: 0 8px 32px rgba(22, 163, 74, 0.16);
    --shadow-xl: 0 16px 48px rgba(22, 163, 74, 0.24);
}

.marmaray-calculator-container {
    max-width: 900px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    position: relative;
}

/* Main Card - Modern Classic Design */
.marmaray-calculator {
    background: rgba(22, 163, 74, 0.15);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
    border: 1px solid rgba(22, 163, 74, 0.25);
    position: relative;
}

.marmaray-title {
    text-align: center;
    color: #0f172a;
    margin: 0 0 2rem 0;
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.marmaray-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.marmaray-form-group {
    display: flex;
    flex-direction: column;
    min-width: 240px;
    flex: 1;
    position: relative;
}

.marmaray-form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #0f172a;
    font-size: 0.875rem;
    letter-spacing: 0;
}

.marmaray-form-group label::before {
    content: '📍';
    font-size: 1rem;
}

.marmaray-form-group select {
    padding: 0.625rem 0.875rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    background-color: #ffffff;
    color: #0f172a;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%230f172a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1rem;
    padding-right: 2.5rem;
    cursor: pointer;
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.marmaray-form-group select:hover {
    border-color: #1173d4;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.marmaray-form-group select:focus {
    border-color: #1173d4;
    outline: none;
    box-shadow: 0 0 0 3px rgba(17, 115, 212, 0.1);
}

/* Swap Button - Clean & Simple */
.marmaray-swap-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 0.5rem;
}

.marmaray-swap-btn {
    background: #f8fafc;
    color: #1173d4;
    border: 1px solid #e2e8f0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.marmaray-swap-btn::before {
    content: '⇄';
    font-size: 1.25rem;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.marmaray-swap-btn:hover {
    background: #1173d4;
    color: #ffffff;
    border-color: #1173d4;
    box-shadow: 0 2px 4px rgba(17, 115, 212, 0.2);
}

.marmaray-swap-btn:hover::before {
    transform: rotate(180deg);
}

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

/* Calculate Button - Clean & Professional */
.marmaray-calculate-btn {
    background: #0f172a;
    color: #ffffff;
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 160px;
    height: fit-content;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.marmaray-calculate-btn:hover {
    background: #1e293b;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.marmaray-calculate-btn:active {
    transform: scale(0.98);
}

/* Result Card - GLASSMORPHISM + GREEN GRADIENT */
.marmaray-result {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg,
        rgba(22, 163, 74, 0.95) 0%,
        rgba(21, 128, 61, 0.98) 50%,
        rgba(22, 163, 74, 0.95) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow:
        0 6px 24px rgba(22, 163, 74, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.marmaray-result::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.1) 0%, transparent 70%);
    animation: marmaray-glow 8s ease-in-out infinite;
}

@keyframes marmaray-glow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10%, 10%) scale(1.1); }
}

.marmaray-result-content {
    font-size: 1rem;
    color: var(--white);
    position: relative;
    z-index: 1;
}

/* Route Display - Premium */
.marmaray-route {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.marmaray-route span[aria-hidden="true"] {
    color: var(--accent-green);
    font-size: 1.8rem;
    font-weight: 900;
    text-shadow: 0 2px 8px rgba(74, 222, 128, 0.4);
}

/* Price Display - ULTRA BOLD, NO EMOJI */
.marmaray-price {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    margin: 2rem 0;
    text-align: center;
    position: relative;
    display: block;
    letter-spacing: -2px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.marmaray-price::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    border-radius: 2px;
    box-shadow: 0 2px 12px rgba(74, 222, 128, 0.6);
}

/* Journey Info Grid - KOMPAKT GRADIENT CARDS */
.marmaray-journey-info {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.marmaray-journey-info > div {
    text-align: center;
    padding: 0.875rem 0.75rem;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.marmaray-journey-info > div:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.15) 100%
    );
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.marmaray-journey-info strong {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-weight: 700;
}

.marmaray-journey-info .info-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

/* Progress Bar - KOMPAKT */
.marmaray-progress-container {
    margin: 1.25rem 0;
}

.marmaray-progress-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.625rem;
    letter-spacing: 0.3px;
}

.marmaray-progress-bar {
    height: 14px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.marmaray-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-green) 0%, var(--accent-green-light) 100%);
    border-radius: 12px;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(74, 222, 128, 0.5);
}

.marmaray-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: marmaray-shimmer 2s infinite;
}

/* Mini Route - Glass Effect */
/* Route Toggle Button */
.marmaray-route-toggle {
    text-align: center;
    margin: 1rem 0;
}

.marmaray-route-toggle-btn {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.marmaray-route-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.marmaray-route-toggle-btn.active {
    background: rgba(74, 222, 128, 0.2);
    border-color: rgba(74, 222, 128, 0.4);
}

/* Mini Route - KOMPAKT */
.marmaray-mini-route {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.marmaray-mini-route.visible {
    max-height: 500px;
    opacity: 1;
    margin-top: 1rem;
}

.marmaray-mini-route-title {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.marmaray-mini-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.75rem;
}

.marmaray-mini-dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.marmaray-mini-dot.active {
    background: var(--accent-green);
    border-color: var(--accent-green);
    width: 18px;
    height: 18px;
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.3), 0 4px 12px rgba(74, 222, 128, 0.6);
}

.marmaray-mini-line {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
}

.marmaray-mini-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 70px;
    font-weight: 500;
}

.marmaray-mini-label.active {
    color: var(--white);
    font-weight: 800;
}

/* Fare Table - KOMPAKT Modern Glass */
.marmaray-fare-table {
    margin: 1.5rem 0;
}

.marmaray-fare-table h4 {
    margin: 0 0 1rem 0;
    color: var(--white);
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.marmaray-fare-table h4::before {
    content: '💳';
    font-size: 1.1rem;
}

.marmaray-fare-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.marmaray-fare-table thead {
    background: rgba(0, 0, 0, 0.2);
}

.marmaray-fare-table th,
.marmaray-fare-table td {
    padding: 0.625rem 0.875rem;
    text-align: left;
    font-size: 0.875rem;
}

.marmaray-fare-table th {
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--white);
}

.marmaray-fare-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
}

.marmaray-fare-table tbody tr:last-child {
    border-bottom: none;
}

.marmaray-fare-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.12);
}

.marmaray-fare-table td {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.marmaray-fare-table tbody tr td:nth-child(2) {
    color: #fbbf24;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.4);
}

.marmaray-fare-table .refund-amount {
    color: #1f2937 !important;
    font-weight: 800 !important;
}

.subscription-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
}

/* Note Section - Modern */
.marmaray-note {
    background: rgba(251, 191, 36, 0.15);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(251, 191, 36, 0.4);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-top: 1.25rem;
    text-align: center;
}

.marmaray-note small {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.8rem;
    line-height: 1.5;
    font-weight: 600;
}

/* Loading */
.marmaray-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
    z-index: 10;
    gap: 1.5rem;
}

.marmaray-loading-spinner {
    width: 56px;
    height: 56px;
    border: 5px solid rgba(22, 163, 74, 0.1);
    border-top: 5px solid var(--primary-green);
    border-radius: 50%;
    animation: marmaray-spin 0.8s linear infinite;
}

/* Animations */
@keyframes marmaray-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes marmaray-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.marmaray-result.marmaray-success {
    animation: marmaray-slideIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes marmaray-slideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Error */
.marmaray-error {
    background: linear-gradient(135deg,
        rgba(220, 38, 38, 0.95) 0%,
        rgba(153, 27, 27, 0.98) 100%
    ) !important;
}

.marmaray-error-message {
    color: var(--white);
    font-weight: 700;
    text-align: center;
    padding: 1.5rem;
    font-size: 1.05rem;
}

/* Accessibility */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Dark Theme Adjustments */
.marmaray-calculator-container[data-theme="dark"] .marmaray-calculator {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.marmaray-calculator-container[data-theme="dark"] .marmaray-form-group select {
    background-color: #0f3460;
    border-color: #1a1a2e;
    color: var(--white);
}

/* ========================================
   RESPONSIVE DESIGN - Professional Mobile UI
   ======================================== */

/* Tablet & Small Desktop (768px - 1024px) */
@media (max-width: 1024px) {
    .marmaray-calculator-container {
        max-width: 100%;
        padding: 0 1rem;
    }
}

/* Tablet Portrait (max-width: 768px) */
@media (max-width: 768px) {
    .marmaray-calculator-container {
        max-width: 100%;
        padding: 0 3px;
    }

    .marmaray-calculator {
        padding: 1.5rem;
    }

    .marmaray-title {
        font-size: 1.5rem;
    }

    .marmaray-form-row {
        gap: 1rem;
    }

    .marmaray-form-group {
        min-width: 100%;
    }

    .marmaray-swap-container {
        order: 2;
        width: 100%;
        text-align: center;
        padding: 0;
        margin: 0.5rem 0;
    }

    .marmaray-swap-btn {
        transform: rotate(90deg);
    }

    .marmaray-swap-btn:hover {
        transform: rotate(90deg) scale(1.05);
    }

    /* Result Card - Tablet */
    .marmaray-result {
        padding: 1.25rem;
        margin-top: 1.5rem;
    }

    .marmaray-price {
        font-size: 3rem;
    }

    .marmaray-journey-info {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0.875rem;
        margin: 1.25rem 0;
    }

    .marmaray-journey-info > div {
        padding: 0.875rem;
    }

    .marmaray-journey-info .info-value {
        font-size: 1.35rem;
    }

    .marmaray-fare-table {
        overflow-x: visible;
    }

    .marmaray-fare-table table {
        min-width: unset;
        width: 100%;
    }

    .marmaray-fare-table th,
    .marmaray-fare-table td {
        padding: 0.5rem 0.3rem;
        font-size: 0.75rem;
    }

    .marmaray-fare-table th {
        font-size: 0.65rem;
    }

    .marmaray-fare-table th:first-child,
    .marmaray-fare-table td:first-child {
        text-align: left;
        padding-left: 0.4rem;
    }

    .marmaray-note {
        padding: 1rem 1.25rem;
    }
}

/* Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .marmaray-calculator-container {
        padding: 0 3px;
    }

    .marmaray-calculator {
        padding: 1rem;
        border-radius: 8px;
    }

    .marmaray-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .marmaray-form-group label {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }

    .marmaray-form-group select {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        padding-right: 2rem;
        background-size: 0.875rem;
    }

    .marmaray-swap-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .marmaray-calculate-btn {
        padding: 0.5rem 1.25rem;
        font-size: 0.8rem;
        min-width: 140px;
    }

    /* Result Card - Mobile */
    .marmaray-result {
        padding: 1rem;
        margin-top: 1.25rem;
        border-radius: 16px;
    }

    .marmaray-route {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .marmaray-price {
        font-size: 2.5rem;
        margin: 1rem 0;
    }

    .marmaray-journey-info {
        padding: 0.75rem;
        gap: 0.625rem;
        margin: 1rem 0;
    }

    .marmaray-journey-info > div {
        padding: 0.75rem 0.625rem;
    }

    .marmaray-journey-info strong {
        font-size: 0.75rem;
    }

    .marmaray-journey-info .info-value {
        font-size: 1.25rem;
    }

    .marmaray-progress-container {
        margin: 0.875rem 0;
    }

    .marmaray-progress-label {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .marmaray-progress-bar {
        height: 6px;
    }

    .marmaray-fare-table {
        margin: 1rem 0;
        overflow-x: visible;
    }

    .marmaray-fare-table h4 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        text-align: left;
    }

    .marmaray-fare-table table {
        min-width: unset;
        width: 100%;
    }

    .marmaray-fare-table th,
    .marmaray-fare-table td {
        padding: 0.4rem 0.2rem;
        font-size: 0.65rem;
        text-align: center;
    }

    .marmaray-fare-table th {
        font-size: 0.55rem;
        padding: 0.35rem 0.15rem;
        white-space: nowrap;
    }

    .marmaray-fare-table th:first-child,
    .marmaray-fare-table td:first-child {
        text-align: left;
        width: 25%;
        padding-left: 0.3rem;
    }

    .marmaray-fare-table td:not(:first-child) {
        width: 25%;
    }

    .marmaray-note {
        padding: 0.75rem 1rem;
        margin-top: 1rem;
        border-radius: 8px;
    }

    .marmaray-note small {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    .marmaray-route-toggle {
        margin: 1rem 0;
    }

    .marmaray-route-toggle-btn {
        font-size: 0.75rem;
        padding: 0.5rem 0.875rem;
    }

    .marmaray-mini-route {
        padding: 0.875rem;
    }

    .marmaray-mini-route-title {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }

    .marmaray-mini-timeline {
        gap: 0.25rem;
    }

    .marmaray-mini-dot {
        width: 8px;
        height: 8px;
    }

    .marmaray-mini-label {
        font-size: 0.7rem;
    }
}
