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

footer {
    margin-top: auto;
}

.dropdown-menu {
    min-width: auto;
}

#shortcutForm {
    margin-bottom: 20px;
}

#shortcuts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.shortcut {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.shortcut-link {
    text-decoration: none !important; /* Remove underline */
	font-size: 0.8rem;
    color: inherit; 
}

.shortcut-link:hover {
    text-decoration: underline; /* Show underline on hover */
}

.card .close-btn {
    display: none;
}

.card:hover .close-btn {
    display: block;
}

.help-btn {
font-size: 1rem;
outline: none;
border: none;
font-weight: 500;
color: #fff;
cursor: pointer;
height: 100%;
padding: 0 10px;
border-radius: 30px;
background: #004010 !important;
}

.help-icon:hover {
    cursor: pointer !important;
}

