.searcharea .search-section {
    margin: 0 auto;
    padding: 0px 175px;
    padding-top: 3rem;
}

.searcharea .search-container {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.searcharea .search-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #2c5aa0, #1e3d72, #2c5aa0);
    background-size: 200% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.searcharea .form-header {
    text-align: center;
    margin-bottom: 30px;
}

.searcharea .form-title {
    color: #2c5aa0;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
}

.searcharea .form-subtitle {
    color: #6c757d;
    font-size: 16px;
}

.searcharea .navigation-tabs {
    display: flex;
    background: #f8f9fa;
    border-radius: 15px;
    padding: 6px;
    margin-bottom: 30px;
    border: 1px solid #e9ecef;
    position: absolute;
    top: -70px;
    z-index: 1;
    left: 50%;
    transform: translate(-50%, 0%);
}

.searcharea .nav-tab {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #495057;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.searcharea .nav-tab.active {
    background: #002b4c;
    color: white;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.searcharea .search-form {
    position: relative;
}

.searcharea .search-wrapper {
    position: relative;
    margin-bottom: 20px;
    z-index: 1;
}

.searcharea .search-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fff;
    outline: none;
}

.searcharea .search-input:focus {
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.searcharea .search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-top: 8px;
    z-index: 10000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
    max-height: 300px;
    overflow-y: auto;
}

.searcharea .search-suggestions.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.searcharea .suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f8f9fa;
    color: #495057;
}

.searcharea .suggestion-item:hover {
    background: #f8f9fa;
    color: #2c5aa0;
}

.searcharea .suggestion-item:last-child {
    border-bottom: none;
}

.searcharea .floating-results {
    position: absolute;
    left: 0;
    right: 0;
    background: #002b4c;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    max-height: 400px;
    overflow-y: auto;
    padding: 0px 39px;
}

.searcharea .floating-results.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.searcharea .results-header {
    padding: 20px 20px 10px;
    border-bottom: 1px solid #f8f9fa;
    background: linear-gradient(135deg, #2c5aa0, #1e3d72);
    color: white;
    border-radius: 15px 15px 0 0;
}

.searcharea .results-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.searcharea .results-count {
    font-size: 12px;
    opacity: 0.8;
}

.searcharea .route-list {
    padding: 10px;
}

.searcharea .route-item {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 8px;
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #f8f9fa;
}

.searcharea .route-item:hover {
    background: #f8f9fa;
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-color: #2c5aa0;
}

.searcharea .route-number {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    min-width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.searcharea .route-info {
    flex: 1;
    font-size: 14px;
    color: #495057;
    line-height: 1.4;
    font-weight: 500;
}

.searcharea .route-arrow {
    color: #2c5aa0;
    font-size: 18px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.searcharea .route-item:hover .route-arrow {
    transform: translateX(5px);
}

.searcharea .no-results {
    padding: 40px 20px;
    text-align: center;
    color: #6c757d;
}

.searcharea .no-results-icon {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.searcharea .quick-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.searcharea .quick-btn {
    padding: 8px 16px;
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.searcharea .quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.3);
}

.searcharea .loading-spinner {
    display: none;
    justify-content: center;
    padding: 20px;
}

.searcharea .spinner {
    width: 30px;
    height: 30px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #2c5aa0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media (min-width: 768px) {
    .searcharea .navigation-tabs {
        width: calc(100% - 20%);
    }
}

@media (max-width: 768px) {
    .searcharea .search-container {
        padding: 25px 20px;
        margin: 10px;
    }

    .searcharea .navigation-tabs {
        top: -50px;
        left: 50%;
        transform: translate(-50%, 0%);
        gap: 5px;
    }

    .searcharea .nav-tab {
        justify-content: flex-start;
    }

    .searcharea .route-item {
        padding: 12px;
    }

    .searcharea .route-number {
        min-width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .searcharea .route-info {
        font-size: 13px;
    }

    .searcharea .navigation-tabs span {
        display: none;
    }
    .searcharea .floating-results {
        padding: 0px 0px !important;
    }
}

.searcharea .highlight {
    background: linear-gradient(120deg, #a8edea 0%, #fed6e3 100%);
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 600;
}
.nav-tab.active .tts path {
    stroke: #ffffff !important;
}
.nav-tab .tts path {
    stroke: #002b4c !important;
}
.nav-tab .hs {
    fill: #002b4c;
    stroke: #002b4c;
}
.nav-tab.active .hs {
    fill: #ffffff !important;
    stroke: #ffffff !important;
}

.nav-tab .fs {
    fill: #002b4c;
}
.nav-tab.active .fs {
    fill: #ffffff !important;
}

.nav-tab .dody .st0 {
    fill: #002b4c;
}
.nav-tab.active .dody .st0 {
    fill: #ffffff !important;
}
.lines * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.lines {
    font-family: "Poppins", sans-serif;
    background: #f5f6fa;
    padding: 40px 20px;
}

.lines .container {
    max-width: 1600px;
    margin: 0 auto;
}

.lines .tab-header {
    display: flex;
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 8px 32px rgba(44, 82, 130, 0.15);
    margin-bottom: 30px;
    border: 1px solid #e2e8f0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.lines .tab-button {
    flex: 1;
    padding: 14px 24px;
    background: transparent;
    border: none;
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 40px;
    white-space: nowrap;
    position: relative;
}

.lines .tab-button.active {
    color: white;
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    box-shadow: 0 4px 12px rgba(44, 82, 130, 0.3);
    transform: translateY(-1px);
}

.lines .tab-button:hover:not(.active) {
    background: #f8fafc;
    color: #2c5282;
    transform: translateY(-1px);
}

.lines .tab-content {
    display: none;
    padding: 35px;
}

.lines .tab-content.active {
    display: block;
}

.lines .cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.lines .card {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #2c5282;
    transition: transform 0.3s, box-shadow 0.3s;
}

.lines .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.lines .card h3 {
    color: #2c5282;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.lines .card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 15px;
}

.lines .card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.lines .card.schedule {
    border-left-color: #dc2626;
}
.lines .card.location {
    border-left-color: #16a34a;
}
.lines .card.history {
    border-left-color: #f59e0b;
}
.lines .card.info {
    border-left-color: #7c3aed;
}

.lines .large-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid #e2e8f0;
    margin-bottom: 20px;
}

.lines .large-card h2 {
    color: #2c5282;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.lines .large-card .emoji {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

.lines .large-card p {
    color: #64748b;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 auto;
}
.lines img {
    display: unset;
}
.lines .feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
    cursor: pointer;
}

.lines .feature-card {
    background: linear-gradient(135deg, #274b78 0%, #1d3b64 100%);
    color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.lines .feature-card:hover {
    transform: scale(1.05);
}

.lines .feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.lines .feature-card p {
    font-size: 14px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .lines .tab-header {
        flex-direction: column;
        border-radius: 20px;
        padding: 6px;
        max-width: none;
        margin: 0 0 20px 0;
    }

    .lines .tab-button {
        padding: 12px 20px;
        margin: 2px 0;
        font-size: 14px;
    }

    .lines .tab-content {
        padding: 0px;
    }

    .lines .cards-container {
        grid-template-columns: 1fr;
    }

    .lines .large-card {
        padding: 25px;
    }

    .lines .large-card h2 {
        font-size: 1.6rem;
    }
}
.saatler .main-container {
    display: flex;
    gap: 15px;
    max-width: 1600px;
    width: 100%;
    flex-wrap: wrap;
}

.saatler .schedule-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    flex: 1;
    min-width: 300px;
}
.header.saat-header {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.saatler .header {
    color: white;
    text-align: center;
}

.saatler .saat-header {
    background: linear-gradient(
        135deg,
        rgb(44, 82, 130) 0%,
        rgb(26, 54, 93) 100%
    );
}

.saatler .header h2 {
    font-size: 1.4rem;
    color: white;
    font-weight: 700;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.saatler .route-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.saatler .route-table th {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
    padding: 10px 8px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.saatler .route-table td {
    padding: 6px;
    text-align: center;
    vertical-align: middle;
    font-size: 0.85rem;
}

.saatler .route-table tr:hover {
    background: #f8f9fa;
}

.saatler .time-cell {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2px;
    font-size: 16px;
}

.saatler .route-indicators {
    display: flex;
    justify-content: center;
    gap: 2px;
    flex-wrap: wrap;
    align-items: center;
}

.route-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
}

.red {
    background-color: #e80414;
}
.blue {
    background-color: #0804ff;
}
.yellow {
    background-color: #fffc04;
}
.green {
    background-color: #18e404;
}
.purple {
    background-color: #9410e4;
}

.saatler .empty-cell {
    color: #bdc3c7;
    font-style: italic;
    font-size: 1rem;
}

@media (max-width: 1200px) {
    .saatler .main-container {
        flex-direction: column;
        gap: 10px;
    }

    .saatler .header h2 {
        font-size: 1.2rem;
    }
}
@media (max-width: 1200px) {
    .duraklar .main-container {
        flex-direction: column;
        gap: 10px;
    }

    .duraklar .header h2 {
        font-size: 1.2rem;
    }
}
@media (max-width: 768px) {
    .saatler .route-table th {
        padding: 8px 4px;
        font-size: 0.8rem;
    }

    .saatler .route-table td {
        padding: 4px 2px;
        font-size: 0.75rem;
    }

    .saatler .route-dot {
        width: 5px;
        height: 5px;
    }
}
.time-cell {
    display: flex;
    vertical-align: middle;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.time-cell img {
    margin-right: 5px;
}
.tooltip {
    position: relative;
    cursor: pointer;
}

.tooltip::after {
    content: attr(data-title);
    position: absolute;
    bottom: 120%;
    font-family: sans-serif;
    font-weight: normal;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    font-size: 12px;
    padding: 4px 6px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 99;
}

.tooltip:hover::after {
    opacity: 1;
}
.duraklar .schedule-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    margin: 20px 0;
}

.duraklar .header {
    color: white;
    text-align: center;
}
.duraklar .main-container {
    display: flex;
    gap: 15px;
    max-width: 1600px;
    width: 100%;
}
.duraklar .durak-header {
    background: linear-gradient(
        135deg,
        rgb(44, 82, 130) 0%,
        rgb(26, 54, 93) 100%
    );
}
.duraklar .schedule-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    flex: 1;
}
.duraklar .header h2 {
    font-size: 1.4rem;
    color: white;
    font-weight: 700;
    margin-bottom: 0px;
    text-transform: uppercase;
}

.duraklar .header h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.duraklar .header p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.duraklar .stop-list {
    list-style: none;
    margin: 0;
    padding: 20px;
    position: relative;
}

.duraklar .stop-list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.duraklar .stop-list li:last-child {
    margin-bottom: 0;
}

.duraklar .dot {
    width: 12px;
    height: 12px;
    background: #fff;
    border: 3px solid #3498db;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
}

.duraklar .dot::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% + 20px);
    background: #ccc;
}

.duraklar .stop-card {
    flex: 1;
    background: #f8f8f8;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e0e0e0;
}

.duraklar .stop-name {
    font-weight: bold;
    font-size: 14px;
    color: #2c3e50;
}

.duraklar .arrow {
    font-size: 18px;
    color: #7f8c8d;
}
.stop-list li a {
    flex: 1;
}
.leaflet-container {
    height: 400px;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
}
.alt-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.alt-tab {
    background: #f5f7fa;
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.alt-tab.active {
    background: #2c5aa0; /* senin üstteki maviden */
    color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.alt-tab-content {
    text-align: center;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}
#otobusum-nerede .large-card {
    padding: 18px 0px 0px 0px;
}
#duraga-yaklasan-araclar .large-card {
    padding: 18px 0px 0px 0px;
}
#duraga-yaklasan-araclar th {
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
}
tbody#bus-list td {
    font-weight: 600;
}
.z-9999 {
    z-index: 9999;
}
.feedbackbtn {
    padding: 15px;
    position: fixed;
    top: 50%;
    right: 30px;
    transform: rotate(270deg) translateX(50%);
    transform-origin: right center;
    margin-top: -100px;
    z-index: 9998;
}
.printbtn {
    padding: 15px;
    position: fixed;
    top: 50%;
    right: 30px;
    transform: rotate(270deg) translateX(50%);
    transform-origin: right center;
    margin-top: 60px;
    z-index: 9998;
}
.centered {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
}
.gap-\[5px\] {
    gap: 5px;
}
.contact-textarea-add {
    height: 100px !important;
}
.contact-input-add {
    height: 40px !important;
}
.lines .card.new {
    border-left-color: #2c5282;
}
.lines .card.new i {
    color: #2c5282;
}
.leading-\[35px\] {
    line-height: 35px;
}
.saatler tr:nth-child(even) {
    background-color: #e9e9e9;
}
.ikonsize{
    font-size:25px!important;
}
@media (max-width: 768px) {
  .top-mobil {
    top: -30px!important;
  }
}
@media (max-width: 768px) {
  .tooltip::after {
    min-width: 160px !important;
    white-space: normal !important;
  }
}
