/* Ajustes leves para a gestão de categorias. */
.category-row{
 display:grid;
 grid-template-columns:34px minmax(0,1fr) auto;
 align-items:center;
 padding:7px 8px 7px 5px;
 overflow:visible;
}
.category-drag-handle{
 display:grid!important;
 place-items:center!important;
 align-self:stretch;
 padding:0!important;
 border:0!important;
 border-radius:8px!important;
 background:transparent!important;
}
.category-drag-handle i{
 display:block;
 width:13px;
 height:12px;
 border-radius:2px;
 background:repeating-linear-gradient(to bottom,#679da1 0 2px,transparent 2px 5px);
}
.category-drag-handle.disabled i{
 width:5px;
 height:5px;
 border-radius:50%;
 background:#36575a;
}
.category-open{padding:7px 8px}
.category-open>b{min-width:48px;padding:5px 7px}
.category-row-actions{
 display:flex;
 align-items:center;
 gap:5px;
 padding-left:4px;
}
.category-row-actions>.category-edit,
.category-row-actions>.category-delete{
 min-height:32px;
 padding:0 9px;
 border:1px solid #27515a;
 border-radius:8px;
 background:transparent;
 font-size:.58rem;
 font-weight:900;
 cursor:pointer;
 transition:border-color .16s,background .16s,color .16s;
}
.category-row-actions>.category-edit{color:#7edbd1}
.category-row-actions>.category-edit:hover{
 border-color:#4bb7ad;
 background:#12393b;
 color:#eafffc;
}
.category-row-actions>.category-delete{
 border-color:#55303a;
 color:#e98391;
}
.category-row-actions>.category-delete:hover{
 border-color:#9b4052;
 background:#371a22;
 color:#ffb4bf;
}
.category-row-actions>.category-fixed{
 display:grid!important;
 place-items:center!important;
 min-height:32px;
 padding:0 9px!important;
 border:1px solid #2a454c;
 border-radius:8px;
 color:#68888d!important;
 font-size:.58rem!important;
 font-weight:900!important;
}
@media(max-width:560px){
 .category-row{grid-template-columns:28px minmax(0,1fr)}
 .category-row-actions{grid-column:2;justify-content:flex-end;padding:2px 0 0}
 .category-open{padding-right:0}
}
