/* =========================================================
   Copy Buttons Pro - Estilos Frontend
   ========================================================= */

.cbp-wrapper {
    margin: 15px 0;
    max-width: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

.cbp-label {
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
}

/* Botón principal */
.cbp-button {
    padding: 10px 20px;
    background: #0073aa;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.cbp-button:hover {
    background: #005177;
    transform: translateY(-1px);
}

.cbp-button:active {
    transform: translateY(0px);
}

/* Texto que se copió */
.cbp-preview {
    display: none;
    margin-top: 10px;
    padding: 10px;
    background: #f4f4f4;
    border-left: 4px solid #0073aa;
    border-radius: 4px;
    font-size: 13px;
    word-break: break-word;
}

/* Mensaje de éxito */
.cbp-success {
    display: none;
    margin-top: 8px;
    color: #1e7e34;
    font-size: 13px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 600px) {

    .cbp-button {
        width: 100%;
        text-align: center;
    }

}