.address-container {
    position: relative;
    display: block;
}

.clear-button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.pac-container {
    z-index: 1060 !important; /* Ensure it is above the Bootstrap modal */
}

small {
    line-height: 14px;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1030;
}

.bottom-nav .nav-item .nav-link {
    color: #6c757d;
    font-size: 1.2rem;
}

.bottom-nav .nav-item .nav-link.active {
    color: #0d6efd;
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1030;
}

.bottom-nav .nav-item {
    flex: 1; /* Ensures all items have equal width */
    text-align: center;
}

.bottom-nav .nav-link {
    color: #6c757d;
    font-size: 0.9rem; /* Smaller text */
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers icons horizontally */
}

.bottom-nav .nav-link.active {
    color: #0d6efd;
}

.percentage-spinner {
    position: relative;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: conic-gradient(
            var(--bs-primary) calc(var(--percentage) * 1%),
            var(--bs-light) 0
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.percentage-spinner::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 50%;
    background-color: #fff;
    border-radius: 50%;
}

.sidebar-button {
    display: flex;
    padding: 0.5rem 1rem;
    color: black;
    margin-bottom: 0.5rem;
    align-items: center;
    text-decoration: none;
    background-color: white;
    border: 0 solid white;
}

a.sidebar-button:hover, a.sidebar-button.active {
    background-color: #F4F4F4;
    border-radius: 5px;
}