.transfer-container {
    max-width: 48rem;
    margin: 2rem auto;
    padding: 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.transfer-route {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.transfer-input {
    flex: 1;
    max-width: 300px;
    padding: 0.75rem;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    text-align: center;
    background: #f9fafb;
    cursor: default;
}

.transfer-input:focus {
    outline: none;
    border-color: #000;
}

.transfer-swap {
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    background: #f3f4f6;
    border-radius: 50%;
    transition: all 0.2s;
    user-select: none;
}

.transfer-swap:hover {
    background: #e5e7eb;
    transform: rotate(180deg);
}

.transfer-trip-type {
    text-align: center;
    margin-bottom: 2rem;
}

.transfer-checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    background: #fff;
    transition: all 0.2s;
}

.transfer-checkbox-label:hover {
    border-color: #000;
    background: #f9fafb;
}

.transfer-checkbox-label input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
}

.transfer-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.transfer-option-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.transfer-option-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: #1f2937;
}

.transfer-option-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #059669;
    margin: 0.75rem 0;
    line-height: 1.2;
}

.transfer-option-price small {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    color: #6b7280;
    margin-top: 0.5rem;
}

.transfer-disabled {
    color: #9ca3af;
}

.transfer-button {
    display: inline-block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: #000;
    color: #fff !important;
    text-decoration: none !important;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 1.25rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.transfer-button:hover {
    background: #333;
}

.transfer-button:visited {
    color: #fff;
}

.transfer-button-disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
}

.transfer-button-disabled:hover {
    background: #e5e7eb;
}

.transfer-button-text {
    display: block;
    color: #fff;
}

.transfer-no-data-card {
    grid-column: 1 / -1;
    padding: 3rem 2rem;
}

.transfer-no-data-message {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 1rem 0 2rem 0;
}

.transfer-destinations-button {
    max-width: 300px;
    margin: 1.5rem auto 0;
}

@media (max-width: 768px) {
    .transfer-container {
        padding: 1rem;
        margin: 1rem auto;
    }

    .transfer-route {
        flex-direction: column;
        gap: 0.75rem;
    }

    .transfer-input {
        max-width: 100%;
    }

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

    .transfer-swap:hover {
        transform: rotate(270deg);
    }

    .transfer-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .transfer-option-card {
        padding: 1.5rem 1rem;
    }

    .transfer-option-title {
        font-size: 1.25rem;
    }

    .transfer-option-price {
        font-size: 2rem;
    }

    .transfer-button {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .transfer-container {
        max-width: 42rem;
    }
}
