* {
    margin: 0;
    padding: 0;
    border: 0;
}

.navbar-bottom {
    position: fixed;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
    padding: 10px 0;
    background: #fff;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
}

.navbar-bottom button {
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 20px;
    background: transparent;
    transition: all .25s ease;
    outline: none;
}

.navbar-bottom button:active:not(.wallet) {
    transform: scale(1.05);
    outline: none;
    box-shadow: none;
}

.navbar-bottom button.active {
    color: #7367F0;
}

.navbar-bottom button a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-size: 25px;
    pointer-events: none;
}

.text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 20px;
    font-size: 14px;
    font-weight: bold;
}

.wallet {
    height: 50px;
    color: #fff;
    border-radius: 50px;
    margin-top: -55px;
}

.wallet .icon {
    height: 50px;
    width: 50px;
    color: white;
    font-size: 25px;
    margin-bottom: 5px;
}

.navbar button.plus:hover {
    transform: translateY(-4px);
}

.navbar-bottom .effect {
    position: absolute;
    width: 60px;
    height: 50px;
    border-radius: 18px;
    background: #e84c4f26;
    opacity: 0;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    min-width: 109px;
    z-index: 1;
    bottom: 100%;
    margin-left: -50px;
    background-color: #ffffff;
    padding: 10px;
    border-radius: 4px;
    box-shadow: none;
    /* Tambahkan baris ini */
}


.dropdown-content a {
    display: block;
    padding: 10px 0;
    height: 100%;
    text-decoration: none;
    color: black;
    font-size: 1.2rem;
}

.dropdown-content a i {
    margin-right: 5px;
}

.dropdown-content a:hover {
    background-color: #ffffff;
}

.dropdown:hover .dropdown-content {
    display: block;
}


.alert-outline-primary {
    color: #1aa0ed;
    border-color: #1aa0ed;
    border: 1px solid #1aa0ed;
}

.alert-outline-secondary {
    color: #6c757d;
    border-color: #6c757d;
    border: 1px solid #6c757d;
}


.shadowss {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}