.route-stops-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.route-stop-item {
    display: flex;
    align-items: flex-start;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.stop-sequence {
    width: 40px;
    height: 40px;
    background: #6F2E90;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    font-weight: bold;
}

.stop-info {
    flex: 1;
}

.stop-times {
    font-size: 14px;
    color: #666;
    margin-top: 4px;
}

.route-badge {
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 15px;
    font-weight: bold;
    display: inline-block;
}

.stop-step {
    margin-left: 20px;
    padding: 6px 0;
}

.transfer-alert {
    margin: 15px 0;
    padding: 8px;
    background: #fff3cd;
    border-left: 4px solid #ff9800;
    font-weight: bold;
}

.destination {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
}

.planner-container {
    display: flex;
    justify-content: center;
    padding: 40px 15px;
    background: #f5f7fa;
}

.planner-card {
    width: 100%;
    max-width: 800px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 30px;
}

.planner-title {
    margin-bottom: 25px;
    font-size: 24px;
}

.route-section {
    margin-top: 20px;
    padding-left: 20px;
    position: relative;
}

.route-name {
    color: #fff;
    padding: 6px 12px;
    display: inline-block;
    border-radius: 6px;
    font-weight: bold;
    margin-bottom: 15px;
}

.timeline-stop {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.timeline-stop .dot {
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
    margin-right: 10px;
}

.stop-name {
    font-size: 15px;
}

.transfer-box {
    background: #fff3cd;
    border-left: 4px solid #ff9800;
    padding: 10px;
    margin: 20px 0;
    font-weight: bold;
    border-radius: 6px;
}

.destination-box {
    margin-top: 30px;
    padding: 12px;
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    border-radius: 6px;
    font-size: 16px;
}

@media (max-width: 600px) {
    .planner-card {
        padding: 20px;
    }

    .planner-title {
        font-size: 20px;
    }
}

.fare-box {
    background: linear-gradient(135deg, #e3f2fd, #f1f8ff);
    padding: 15px;
    border-left: 5px solid #2196f3;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
}

.nearest-route-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.route-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid #eee;
    transition: background 0.2s ease;
}

.route-item:hover {
    background: #f8f9fa;
}

.route-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.route-badge {
    background: #0073e6;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
}

.route-name {
    font-size: 14px;
    color: #333;
}

.route-meta {
    font-size: 13px;
    color: #777;
    white-space: nowrap;
}

.drb-archive-container {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.drb-stop-grid {
    display: grid;
    gap: 20px;
}

.drb-stop-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.drb-stop-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.drb-route-schedule{
    margin-top:20px;
}

.drb-schedule-row{
    display:flex;
    align-items:center;
    padding:10px;
    border-bottom:1px solid #eee;
}

.drb-icon{
    font-size:22px;
    margin-right:12px;
}

.drb-route-info{
    flex:1;
}

.drb-route-title{
    font-weight:600;
    font-size:16px;
}

.drb-destination{
    font-size:13px;
    color:#666;
}

.drb-time{
    font-weight:600;
    font-size:15px;
}


