.app-title {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 5px;
    margin-bottom: 5px;
    flex: none;
    border-bottom: none;
    /* Remove border from index page header */
}

.main-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 0;
    text-align: center;
    overflow: hidden;
    position: relative;
}

.status-label {
    font-size: 24px;
    font-weight: 600;
    color: #C8C7C5;
}

/* Ensure Lottie animations in header behave like the original indicators */
.header dotlottie-wc {
    width: 12px !important;
    height: 12px !important;
    display: inline-block;
    vertical-align: middle;
}

.status-container {
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* Ensure Lottie animation doesn't affect layout */
.status-container dotlottie-wc {
    width: 20px !important;
    height: 20px !important;
    margin: 0;
    padding: 0;
    min-width: 20px;
    min-height: 20px;
    display: inline-flex !important;
    align-self: center;
}

.bus-details {
    margin-bottom: 30px;
}

.bus-number {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
}

.bus-route {
    font-size: 18px;
    color: #ccc;
}

/* Next Button */
.next-button {
    background-color: #6A63F6;
    border: none;
    border-radius: 0;
    width: 90px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.1s;
}

.next-button:hover {
    background-color: #5a53e6;
}

.next-button:active {
    background-color: #5049d6;
    transform: scale(0.98);
}

.arrow-icon {
    width: 30px;
    height: 30px;
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.bus-image-container {
    margin: 200px auto;
    width: 100%;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
}

dotlottie-wc {
    width: 100%;
    max-width: 900px;
    height: auto;
    min-height: 450px;
    display: block;
    transform: scale(1.6);
    transform-origin: center;
}

.bus-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    max-width: 100%;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    margin: 0;
    padding: 0;
    position: relative;
}

@media (min-width: 768px) {
    .container {
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }

    .status-label {
        font-size: 32px;
    }

    .bus-number {
        font-size: 36px;
    }

    .bus-route {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .status-label {
        font-size: 20px;
    }

    .bus-number {
        font-size: 24px;
    }

    .bus-route {
        font-size: 16px;
    }
}