.Trip-history-section {
    display: flex;
    justify-content: center;
    align-items: center; /* Vertically centers the content */
    min-height: 60vh;    /* Takes up most of the screen height */
    padding: 10px;
}

.Trip-history-box {
    text-align: center;
    max-width: 400px;
}

/* Style the 'No History' Image */
.Trip-history-box img {
    width: 150px;
    margin-bottom: 20px;
    opacity: 0.7;
}


.Trip-history-box h2 {
    font-size: 22px;
    color: var(--axis-black);
    line-height: 1.4;
    font-weight: 600;
}


.Trip-history-box a {
    display: block; /* Moves it to its own line */
    margin-top: 20px;
    color: var(--axis-white);
    background-color: var(--axis-black);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s ease;
}

.Trip-history-box a:hover {
    background-color:var(--axis-black);/* Dark gray hover effect */
    transform: scale(1.02); /* Very subtle pop-out effect */
}
.container {
    display: flex;
    justify-content: center;
    padding: 20px 20px; /* More breathing room at the top */
    width: 100%;
}

