.category-tabs{
    display:flex;
    gap:10px;
    margin:10px 0;
}

.category-tabs .tab-btn{
    flex:1;
    padding:10px;
    border:none;
    background:#eee;
    border-radius:8px;
}

.category-tabs .tab-btn.active{
    background:#000;
    color:#fff;
}

.form-card{
    padding:10px;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.cat-media-box{
    border:1px dashed #ccc;
    padding:10px;
    text-align:center;
    border-radius:10px;
    cursor:pointer;
}

.category-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
    padding:10px;
}

.cat-card{
    background:#fff;
    border-radius:12px;
    padding:10px;
    box-shadow:0 2px 8px rgba(0,0,0,0.08);
    text-align:center;
}

.cat-card img{
    width:100%;
    height:90px;
    object-fit:cover;
    border-radius:8px;
}

.cat-placeholder{
    width:100%;
    height:90px;
    background:#f2f2f2;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:8px;
    color:#888;
    font-size:12px;
}