/* ============================================
   MODO DE EDIÇÃO INLINE (somente para admin logado)
   ============================================ */

#icc-toggle-edicao {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 100000;
    background: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(0,0,0,.25);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, transform .15s;
}
#icc-toggle-edicao:hover { transform: translateY(-2px); }
#icc-toggle-edicao.ativo { background: #F39C12; }

body.icc-modo-edicao .c-editavel {
    outline: 1.5px dashed rgba(26,115,232,.55);
    outline-offset: 3px;
    border-radius: 3px;
    cursor: text;
    transition: background .15s, outline-color .15s;
}
body.icc-modo-edicao .c-editavel:hover {
    background: rgba(26,115,232,.08);
    outline-color: #1a73e8;
}
body.icc-modo-edicao .c-editavel:focus {
    background: rgba(26,115,232,.12);
    outline: 2px solid #1a73e8;
    outline-offset: 3px;
}

#icc-toast {
    position: fixed;
    right: 20px;
    bottom: 78px;
    z-index: 100000;
    background: #212529;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    box-shadow: 0 4px 14px rgba(0,0,0,.25);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .2s, transform .2s;
}
#icc-toast.mostrar { opacity: 1; transform: translateY(0); }
#icc-toast.icc-toast-erro { background: #c0392b; }
