.station-modal {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    padding: 0;
    width: 95%;
}

.station-modal::backdrop {
    background: rgba(0, 0, 0, 0.5);
}

.station-modal .modal-header {
    align-items: center;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    padding: 15px;
}

.station-modal .modal-header h5 {
    font-size: 1.1rem;
    margin: 0;
}

.station-modal .modal-body {
    max-height: 60vh;
    overflow-y: auto;
    padding: 15px;
}

.station-modal .station-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}

.station-modal .station-list li {
    border-bottom: 1px dashed #eee;
    padding: 8px 0;
}

.station-modal .modal-footer {
    border-top: 1px solid #ddd;
    padding: 15px;
    text-align: right;
}

.open-modal-btn {
    background: none;
    border: none;
    color: #0066cc;
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    text-decoration: underline;
}

.open-modal-btn:hover {
    opacity: .7;
}

.close-modal-btn {
    background: #f7f7f7;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 5px 15px;
}

.close-modal-btn:hover {
    opacity: .5;
}

.modal-header .close-modal-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    padding: 0 5px;
}

.modal-header .close-modal-btn:hover {
    opacity: .5;
}