.form-diseño {
    padding: 0;
    margin: 0;
    min-height: 1000px;
}

.form-diseño .seccion-herramientas {
    position: sticky;
    padding: 0;
    margin: 0;
    top: 0;
    z-index: 500;
    background-color: #eeeeee;
}

.form-diseño .seccion-herramientas .panel-action-view {
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-diseño .seccion-herramientas .panel-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    margin: 0;
}

.form-diseño .seccion-herramientas .panel-buttons .panel-1 {
    padding: 5px;
    margin: 0;
}

.form-diseño .seccion-herramientas .panel-buttons .panel-2 {
    padding: 5px;
    margin: 0;
}

.form-diseño .seccion-herramientas .panel-buttons .panel-3 {
    padding: 5px;
    margin: 0;
}

.btn-group-color-diseño {
    display: inline-flex;
    position: relative;
    border-radius: 4px;
    border: 1px solid rgb(46, 46, 46);
    border-color: rgb(168, 166, 166);
    box-shadow: 0 2px 4px rgb(88, 88, 88, 0.5);
    transition: all 0.2s ease-in-out;
    height: 40px;
    width: 60px;
    gap: 2px;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.btn-group-color-diseño-1 {
    display: inline-flex;
    position: relative;
    border-radius: 4px;
    border: 1px solid rgb(46, 46, 46);
    border-color: rgb(168, 166, 166);
    box-shadow: 0 2px 4px rgb(88, 88, 88, 0.5);
    transition: all 0.2s ease-in-out;
    height: 40px;
    width: 120px;
    gap: 2px;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    background-color: #0d6efd !important;
    color: white;
    font-weight: 500;
}

.btn-group-color-diseño-2 {
    display: inline-flex;
    position: relative;
    border-radius: 4px;
    border: 1px solid rgb(46, 46, 46);
    box-shadow: 0 2px 4px rgb(88, 88, 88, 0.5);
    transition: all 0.2s ease-in-out;
    height: 40px;
    width: 120px;
    gap: 2px;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    background-color: #0d6efd !important;
    color: white;
    font-weight: 500;
}

/* Efecto hover de levitación */
.btn-group-color:hover {
    transform: translateY(-0px);
}

.btn-group-color-diseño .btn-cubo {
    height: 27px;
    width: 27px;
    margin-left: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1px;
}

.btn-group-color-diseño .btn-cubo.fill-color {
    background-color: yellow;
}

.btn-group-color-diseño .btn-arrow {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 5px;
    border-radius: 0 4px 4px 0;
    padding: 0;
    color: black;
}

.btn-group-color-diseño .menu-accesorios {
    display: none;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translateY(100%) translateX(+85%);
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 8px 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

.btn-group-color-diseño .menu-accesorios .btn-submenu {
    display: inline-flex;
    position: relative;
    border-radius: 4px;
    border: 1px solid rgb(46, 46, 46);
    border-color: rgb(168, 166, 166);
    box-shadow: 0 2px 4px rgb(88, 88, 88, 0.5);
    transition: all 0.2s ease-in-out;
    height: 25px;
    width: 25px;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

input[type="color"] {
    position: absolute;
    bottom: 0;
    /* esquina inferior */
    right: 0;
    /* esquina derecha */
    opacity: 0;
    /* invisible */
    width: 1px;
    height: 1px;
    border: none;
    cursor: pointer;
}

/* Botón Negrita */
.btn-negrita {
    font-weight: 800;
    color: #212529;
}

/* Botón Cursiva */
.btn-cursiva {
    font-style: italic;
    background-color: #f8f9fa;
    color: #212529;
}