
form.admin label {
	display: inline-block;
}

div.admin-tools {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    gap: 8px;
    z-index: 9999;
}

.admin-tools button {
    padding: 6px 10px;
    font-size: 13px;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid #999;
    background: #f3f3f3;
}

.admin-tools button:hover {
    background: #e2e2e2;
}

.admin-tools .danger {
    background: #ffeaea;
    border-color: #d44;
}

.admin-tools .danger:hover {
    background: #ffdddd;
}

/* adaptation mobile */
@media screen and (max-width: 768px) {
    div.admin-tools {
		display: none;
    }
}
