/* Estilo general de botones outline modernos */
.btn-outline-custom {
    border-width: 2px !important;
    border-radius: 10px !important;
    font-weight: 600;
    padding: 8px 14px;
    transition: 0.2s ease-in-out;
}

/* ----- IMPRIMIR (azul) ----- */
.btn-outline-imprimir {
    border: 2px solid #0d6efd !important;
    color: #0d6efd !important;
    background-color: transparent;
}
.btn-outline-imprimir:hover,
.btn-outline-imprimir:focus,
.btn-outline-imprimir:active {
    background-color: #0d6efd !important;
    color: white !important;
}

/* ----- BOTÓN ADJUNTOS (natanja) ----- */
.btn-outline-adjuntos {
    border: 2px solid #f0a567 !important;
    color: #f0a567 !important;
    background-color: transparent;
}

.btn-outline-adjuntos:hover,
.btn-outline-adjuntos:focus,
.btn-outline-adjuntos:active {
    background-color: #f0a567 !important;
    color: white !important;
}

/* ----- BOTÓN VÍNCULOS (violeta) ----- */
.btn-outline-vinculos {
    border: 2px solid #ce74f2 !important;
    color: #ce74f2 !important;
    background-color: transparent;
}

.btn-outline-vinculos:hover,
.btn-outline-vinculos:focus,
.btn-outline-vinculos:active {
    background-color: #ce74f2 !important;
    color: white !important;
}

/* Dropdown adjuntos */
.adjuntos-dropdown .dropdown-item {
    color: #f0a567;                 /* texto naranja */
    font-weight: 500;
}

.adjuntos-dropdown .dropdown-item:hover {
    background-color: #fff3e0;      /* fondo suave */
    color: #f0a567;
}

.adjuntos-dropdown .dropdown-item i {
    color: #f0a567;                 /* icono violeta */
}

/* Dropdown vinculos */
.vinculos-dropdown .dropdown-item {
    color: #ce74f2;                 /* texto violeta */
    font-weight: 500;
}

.vinculos-dropdown .dropdown-item:hover {
    background-color: #f4defc;      /* fondo suave */
    color: #ce74f2;
}

.vinculos-dropdown .dropdown-item i {
    color: #ce74f2;                 /* icono violeta */
}


