html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex-grow: 1; /* This makes the content area take up available space */
}

.footer {
    flex-shrink: 0;
    background-color: #0077B6; /* Or any color you want */
    padding: 20px;
    color: white; /* Ensure the text color is visible */
    text-align: center;
}

.content-container {
    text-align: center;
    padding-top: 180px;
}

.main-card {
    position: relative;
    width: 100%;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
}

.form-check-input.main-text-color {
    accent-color: #0077b6;
}

.main-color {
    color: #0077b6;
}

.main-bg-color {
    background-color: #0077b6;
}

.select2-container--default .select2-selection--single {
    padding-top: 4px;
    border-left: none !important;
}

.popular-routes {
    margin-top: 20px;
}

.route .card-img-top {
    height: 200px;
    object-fit: cover;
}

.route .card-body {
    padding: 15px;
}

.route .card-title {
    font-size: 17px;
    margin-bottom: 10px;
}

.route .card-text {
    font-size: 14px;
    margin-bottom: 15px;
}

.card-link {
    display: block;
    text-decoration: none;
    color: #000000;
}

.card-link:hover {
    text-decoration: none;
    color: #000000;
}

.pro-pd {
    padding-top: 100px;
}

.gray-bg {
    background-color: #f8f8f8;
}

#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: rgba(85, 85, 85, 0.5);
    color: white;
    cursor: pointer;
    font-size: 25px;
    border-radius: 50%;
    width: 40px;
    transition: background-color 0.3s;
}

#scrollTopBtn:hover {
    background-color: rgba(51, 51, 51, 0.5);
}

