/* Megálló lista wrapper */
.torrebusz-stop-list {
    border-left: 4px solid #f4f4f4;
    padding-left: 10px;
}

/* Egy megálló sora */
.tb-stop {
    position: relative;
    margin: 8px 0;
    padding: 6px 8px;
    border-radius: 4px;
}

/* Sor kiemelése, ha fölé visszük az egeret */
.tb-stop:hover {
    background: #f9f9f9;
}

/* Vonal badge (színes kör) */
.tb-line-badge {
    display: inline-block;
    min-width: 28px;
    padding: 2px 8px;
    border-radius: 999px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    font-size: 13px;
    margin-right: 6px;
}

/* Színek a kért vonalakhoz */
.tb-line-a  { background: #f7941d; }   /* A busz - narancs */
.tb-line-a2 { background: #800020; }   /* A2 - bordó */
.tb-line-b  { background: #7b3fb8; }   /* B - lila */
.tb-line-c  { background: #7ed321; }   /* C - világos zöld */
.tb-line-df { background: #e6007e; }   /* DF - magenta */
.tb-line-e  { background: #0070ba; }   /* E - kék */
.tb-line-g  { background: #007f3b; }   /* G - sötét zöld */
.tb-line-h  { background: #c65100; }   /* H - sötét narancs */

/* Megálló neve */
.tb-stop-name {
    font-weight: 600;
}

/* Kis infóablak – alapból rejtve, hoverre látszik */
.tb-stop-popup {
    position: absolute;
    left: 40px;
    top: 100%;
    margin-top: 6px;
    z-index: 999;
    display: none;
    width: 320px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    padding: 10px 12px;
}

/* Ha az egér a soron van, mutassuk az ablakot */
.tb-stop:hover .tb-stop-popup {
    display: block;
}

/* Infóablak elemei */
.tb-stop-popup h4 {
    margin: 0 0 8px;
    font-size: 15px;
}

.tb-stop-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 8px;
}

.tb-stop-content {
    font-size: 13px;
    margin-bottom: 6px;
}

.tb-stop-links a {
    font-size: 12px;
    margin-right: 8px;
}
