/* Custom styles for django-admin-shortcuts */

/* Main shortcuts container background */
ul.shortcuts {
    background: #002C56 !important;
}

/* Shortcut group titles */
ul.shortcuts h2 {
    background: #002C56 !important;
    color: #FFFFFF !important;
}

/* Individual shortcut items */
ul.shortcuts li a {
    background: #002C56 !important;
    color: #FFFFFF !important;
}

ul.shortcuts li a:hover {
    background: var(--primary) !important;
    color: var(--primary-fg) !important;
}

/* Shortcut icons */
ul.shortcuts li a .icon i {
    color: #FFFFFF !important;
}

ul.shortcuts li a:hover .icon i {
    color: var(--primary-fg) !important;
}

/* Shortcut count badges */
ul.shortcuts li a .count {
    background: #002C56  !important;
    color: #FFFFFF !important;
    transition: all 0.15s !important;
}

ul.shortcuts li a:hover .count {
    background: var(--primary) !important;
    color: #002C56 !important;
}

ul.shortcuts li a .count_new {
    background: var(--error-fg) !important;
    color: #FFFFFF !important;
}

/* Toggle app list button */
.admin_shortcuts #toggle_app_list {
    background: #002C56 !important;
    color: #FFFFFF !important;
}

.admin_shortcuts #toggle_app_list:hover {
    background: var(--primary) !important;
    color: var(--primary-fg) !important;
}
