.app-btn {
    background: linear-gradient(to right, #b8860b, #8b4513);
    border: none;
    color: white;
    padding: 5px 4px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.2s ease;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    min-width: 100px;
    width: auto;
}

.app-btn:hover {
    background: linear-gradient(to right, #d4af37, #6b3f1d);
    transform: scale(1.05);
}


.dashboard-table {
    margin-left: 10px;
    margin-right: 10px;
}

span.required {
    color: #e02612;
    font-size: 14pt;
    font-weight: 700;
    line-height: 1;
}

#userDropdown {
    margin-right: 30px;
}

.hambergerNavbar {
    display: none;
}

.custom-navbar {
    background-color: #E0E1E2;
}


@media (min-width: 320px) and (max-width: 768px) {
    #userDropdown {
        margin-right: 0px;
    }

    .logo {
       display: none;
    }

    .hambergerNavbar {
        font-size: 18px;
        display: block;
    }
}