﻿:root {
    --indent-base: 1rem;
}

body {
    margin: 0;
    padding: 0;
}

.fr-header__body {
    padding-left: 0;
    padding-right: 0;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.breadcrumb-section {
    background-color: #f6f6f6;
    border-bottom: 1px solid #ddd;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

    .breadcrumb-section .main-container {
        margin: 0 auto;
    }

.fr-breadcrumb__button {
    margin: 0;
}

.page-title {
    margin: 2rem 0 1rem 0;
}

    .page-title h1 {
        margin: 0;
        font-size: 2rem;
        font-weight: 700;
        color: #161616;
    }

.search-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f6f6f6;
    border-radius: 0.25rem;
    text-align: center;
}

.search-form {
    display: flex;
    gap: 0rem;
    align-items: flex-end;
    justify-content: center;
}

    .search-form .fr-input-group {
        flex: 1;
        max-width: 400px;
        margin-bottom: 0;
    }

        .search-form .fr-input-group label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            display: block;
        }

        .search-form .fr-input-group input {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid #ccc;
            font-size: 1rem;
        }

    .search-form .fr-btn {
        padding-left: 10.75px;
        padding-right: 10.75px;
        margin: 0;
        min-width: auto;
    }

.station-result {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
}

.station-header {
    margin-bottom: 1.5rem;
}

.station-code {
    font-weight: 700;
    font-size: 1.1rem;
    color: #161616;
    margin-bottom: 0.5rem;
}

.station-link {
    color: #0063cb;
    text-decoration: none;
    font-size: 0.95rem;
}

    .station-link:hover {
        text-decoration: underline;
    }

.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.price-card {
    padding: 1rem;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 0.25rem;
    text-align: center;
}

.price-card-title {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #161616;
}

.price-currency {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

.price-info {
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.5rem;
}

.station-details {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

#errorMessage {
    color: red;
    padding-top: 0.25rem;
}