﻿.route-card-item {
    border-radius: 2rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    background: #ffffff;
    /* neumorphic  neumorphism */
/*    box-shadow: 8px 8px 16px #d1d9e6, -8px -8px 16px #ffffff;*/
/*    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25), 0 4px 10px rgba(0, 0, 0, 0.1);*/
    box-shadow: 8px 8px 16px rgba(0,0,0,0.3), -4px -4px 10px rgba(255,255,255,0.1);
    /* Make cards square with consistent size */
    width: 200px;
    height: 200px;
    margin: 1rem;
}

[data-theme="dark"] .route-card-item {
    box-shadow: 8px 8px 16px rgba(0,0,0,0.3), -4px -4px 10px rgba(255,255,255,0.1);
}

[data-theme="light"] .route-card-item {
    box-shadow: 8px 8px 16px #d1d9e6, -8px -8px 16px #ffffff;
}

.route-card-item:hover {
    transform: translateY(-8px);
}

.route-card-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: #f5f7fa;
    box-shadow: inset 0 2px 6px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.route-icon {
    font-size: 36px;
    color: #3b82f6;
    font-variation-settings: 'FILL' 1;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.route-card-title {
    font-weight: bold;
    color: #1f2937;
    text-align: center;
}

.route-card-subtitle {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 4px;
}
