﻿body {
}
.state-tile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #eee;
    text-decoration: none;
    transition: all 0.25s ease;
    color: #333;
}

.state-text {
    font-size: 14px;
    font-weight: 500;
}

.arrow {
    opacity: 0;
    transform: translateX(-5px);
    transition: 0.25s;
}

/* Hover Effect */
.state-tile:hover {
    background: #f8fafc;
    border-color: #dbeafe;
    color: #2563eb;
}

    .state-tile:hover .arrow {
        opacity: 1;
        transform: translateX(0);
    }

.city-pill {
    display: block;
    padding: 10px 14px;
    border-radius: 25px;
    background: #f8fafc;
    border: 1px solid #eee;
    text-decoration: none;
    font-size: 13px;
    color: #444;
    text-align: center;
    transition: all 0.25s ease;
}

    .city-pill:hover {
        background: #2563eb;
        color: #fff;
        border-color: #2563eb;
        transform: translateY(-2px);
    }